forked from james-m-osborn/astrosat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 839 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='astrosat',
author='James Osborn',
author_email='james.osborn@durham.ac.uk, matthew.townson@durham.ac.uk',
url='https://github.com/james-m-osborn/astrosat',
packages=['astrosat',
'astrosat.data',
],
package_dir={'astrosat': 'astrosat'},
package_data={'astrosat': ['data/bsc.dat']},
description='A tool for forecasting satellite transits in astronomical observations',
version='1.0.1',
install_requires=['scipy',
'ephem',
'matplotlib',
'rich',
'astropy',
'astroquery',
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)