-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.17 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
from setuptools import setup, find_packages
setup(
name = 'irgsctool',
version = '1.1.6',
description = 'Python tool to generate a catalog of NIR guide stars for the AO observations of the Thirty Meter Telescope.',
url = '',
author = 'Sarang Shah',
author_email = '[email protected]',
license = 'BSD 2-clause',
package_dir = {'':'src'},
packages = find_packages(where='src'),
install_requires =['astroquery', 'astropy', 'matplotlib', 'astropy', 'dustmaps',
'numpy', 'datetime', 'requests', 'pyvo'],
include_package_data = True,
package_data = {'': ['irgsctool/data/*']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.9',
],
)
#import irgsctool
#from dustmaps.config import config
#config['data_dir'] = Path(__file__).parent.joinpath()
#import dustmaps.sfd
#dustmaps.sfd.fetch()