-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 751 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name="factnn",
version="0.5",
license="GPLv3",
author="Jacob Bieker",
authoer_email="jacob.bieker@gmail.com",
url="https://github.com/jacobbieker/factnn",
download_url="https://github.com/jacobbieker/factnn/archive/v0.5.0.tar.gz",
keywords=["IACT Astronomy", "FACT", "Machine Learning", "Tensorflow"],
packages=find_packages(),
install_requires=["astropy", "numpy"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
],
)