-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 944 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from setuptools import setup
try:
from testr.setup_helper import cmdclass
except ImportError:
cmdclass = {}
entry_points = {
"console_scripts": [
"kalman_watch_monitor_win_perigee = kalman_watch.monitor_win_perigee:main",
"kalman_watch_low_kalman_mon = kalman_watch.low_kalman_mon:main",
"kalman_watch_kalman_perigee_mon = kalman_watch.kalman_perigee_mon:main",
]
}
setup(
name="kalman_watch",
description="Kalman stars monitor",
author="Tom Aldcroft",
author_email="[email protected]",
url="https://sot.github.io/kalman_watch",
packages=["kalman_watch"],
package_data={"kalman_watch": ["*.html", "task_schedule.cfg"]},
tests_require=["pytest"],
use_scm_version=True,
setup_requires=["setuptools_scm", "setuptools_scm_git_archive"],
cmdclass=cmdclass,
entry_points=entry_points,
)