-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 765 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 765 Bytes
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
from setuptools import setup
setup(
name='darkspot',
version='0.3.0',
description='Find a dark spot in the sky e. g. for a Ratescan',
url='http://github.com/fact-project/darkspot',
author='Maximilian Noethe',
author_email='maximilian.noethe@tu-dortmund.de',
license='MIT',
packages=['darkspot'],
package_data={'darkspot': ['hipparcos_vmag_less_10.tsv']},
entry_points={
'console_scripts': ['find_darkspot = darkspot.__main__:main']
},
python_requires='>= 3.6',
install_requires=[
'numpy',
'ephem',
'tqdm',
'click',
'astropy>=4',
],
extras_require={
'plot': [
'matplotlib',
'cartopy',
]
},
zip_safe=False,
)