-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
27 lines (26 loc) · 1.04 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
from setuptools import setup
setup(
name="fetch",
version="0.2.0",
packages=["fetch"],
scripts=["bin/predict.py", "bin/train.py"],
package_dir={"fetch": "fetch"},
package_data={"fetch": ["models/model_list.csv", "models/*/*"]},
url="https://github.com/devanshkv/fetch",
tests_require=["pytest", "pytest-cov"],
license="GNU General Public License v3.0",
author=["Devansh Agarwal", "Kshitij Aggarwal"],
author_email=["[email protected]", "[email protected]"],
description="FETCH (Fast Extragalactic Transient Candidate Hunter)",
classifiers=[
"Natural Language :: English",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering :: Astronomy",
],
)