-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
25 lines (24 loc) · 1.11 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
from setuptools import setup
import glob
import os
setup(
name="dense_basis",
version="0.1.9",
author="Kartheik Iyer",
author_email="[email protected]",
url = "https://github.com/kartheikiyer/dense_basis",
packages=["dense_basis"],
description="SED fitting with non-parametric star formation histories",
long_description=open("README.md").read(),
package_data={"": ["README.md", "LICENSE"], "dense_basis": ["train_data/*.mat", "train_data/alpha_lookup_tables/*.npy", "pregrids/*.mat", "filters/*.dat", "filters/filter_curves/goods_s/*.*","filters/filter_curves/goods_n/*.*", "filters/filter_curves/cosmos/*.*", "filters/filter_curves/egs/*.*", "filters/filter_curves/uds/*.*"]},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
],
install_requires=["george", "corner", "hickle", "schwimmbad"]
)