forked from kbarbary/sfdmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 932 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 932 Bytes
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
import re
from setuptools import setup
# Synchronize version from code.
version = re.findall(r"__version__ = \"(.*?)\"", open("sfdmap.py").read())[0]
setup(
name="sfdmap",
version=version,
description="Get E(B-V) values from Schlegel et al (1998) dust maps",
long_description="",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Intended Audience :: Science/Research",
],
py_modules=["sfdmap"],
install_requires=["numpy"],
url="http://github.com/kbarbary/sfdmap",
author="Kyle Barbary",
author_email="kylebarbary@gmail.com",
maintainer="Simeon Reusch",
maintainer_email="simeon.reusch@desy.de",
)