-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.1 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
33
from setuptools import setup
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name="gdpyc",
version="1.1",
author="Angel Ruiz",
author_email="[email protected]",
description="Gas and Dust Python Calculator",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/ruizca/gdpyc",
setup_requires=["pytest-runner"],
tests_require=["pytest"],
install_requires=["astropy", "numpy", "astropy-healpix", "regions"],
extras_require={"plot_map": ["matplotlib", "healpy"]},
packages=["gdpyc"],
package_dir={"gdpyc": "gdpyc"},
package_data={
"gdpyc": ["data/*_lowres.fits", "data/*_heasoft.fits", "data/sfcoeff.fits"]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
],
)