-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
34 lines (33 loc) · 961 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
31
32
33
34
from setuptools import setup, find_packages
setup(
name='cosmo',
version='1.1.1',
description='Monitors for HST/COS',
keywords=['astronomy'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: BSD-3 :: Association of Universities for Research in Astronomy',
'Operating System :: Linux'
],
python_requires='~=3.7', # 3.7 and higher, but not 4
packages=find_packages(),
install_requires=[
'setuptools',
'numpy>=1.11.1',
'astropy>=1.0.1',
'plotly>=4.9.0',
'dask',
'pandas>=0.25.0',
'pytest',
'pyyaml',
'peewee>=3.13.3',
'crds',
'sunpy[all]',
'monitorframe @ git+https://github.com/spacetelescope/[email protected]#egg=monitorframe'
],
package_data={'cosmo': ['pytest.ini']},
entry_points={
'console_scripts':
['cosmo=cosmo.run_monitors:runner']
}
)