-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.28 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.28 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="spectrAOD",
version="1.1.0",
author="Camellia Magness",
author_email="cmagness@stsci.edu",
description="This package is for measuring the apparent optical depth of "
"spectra",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cmagness/spectrAOD",
keywords=['astronomy'],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.5', # 3.5 and higher
packages=find_packages(),
install_requires=[
'setuptools',
'numpy',
'astropy',
'pandas',
'argparse',
'pyyaml'
],
package_data={'spectrAOD': ['mini_ions.csv']},
entry_points={'console_scripts': ['measure=spectrAOD.measure_aod:main',
'batch=spectrAOD.batch_run:main']}
# dependency_links=[],
)