-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (44 loc) · 1.21 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
setup(
name='starry_night',
version='1.3.0',
description='A tool for detecting clouds in the night sky based on star detection.',
url='https://github.com/tudo-astroparticlephysics/starry_night',
author='Jan Adam',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'astropy>=2.0',
'configparser',
'docopt',
'matplotlib>=2.0',
'numpy',
'pandas',
'pyephem',
'requests',
'scikit-image',
'scipy',
'tables',
],
test_suite='nose.collector',
tests_require=['nose'],
entry_points={
'console_scripts': [
'starry_night = starry_night.scripts.starry_night:main'
]
},
package_data={
'starry_night': [
'data/catalogue_10vmag_1.0degFilter.csv',
'data/catalogue_10vmag_0.8degFilter.csv',
'data/CTA_cam.config',
'data/GTC_cam.config',
'data/IceCube_cam.config',
'data/Magic_cam1.config',
'data/Magic_cam2.config',
'data/example_sources.csv',
],
},
zip_safe=False
)