-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 800 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
from setuptools import setup
setup(
name="esphot",
version="0.4.0",
author="Bryce Kalmbach",
author_email="[email protected]",
url="https://github.com/jbkalmbach/esp",
packages=["esp", "esp.lsst_utils"],
description="Estimating Spectra from Photometry",
long_description=open("README.md").read(),
package_data={"": ["README.md", "LICENSE"]},
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
install_requires=["matplotlib", "numpy", "scipy", "sklearn", "george",
"future"]
)