-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.24 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import setuptools
import gamornet
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gamornet",
version=gamornet.__version__,
author=gamornet.__author__,
author_email="[email protected]",
description="A CNN to classify galaxies morphologically",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords="astrophysics astronomy galaxies convolutional neural networks morphological analysis morphology sdss candels",
url="http://gamornet.ghosharitra.com/",
project_urls={
"Source Code": "https://github.com/aritraghsh09/GaMorNet",
"Documentation": "https://gamornet.readthedocs.io/",
},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: GPU :: NVIDIA CUDA :: 10.1",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
],
packages=setuptools.find_packages(),
python_requires='~=3.3',
install_requires=[
"tensorflow-gpu ~=1.13",
"tflearn ~=0.3",
"keras ~=2.2,<2.4",
"wget ~=3.2",
"numpy ~=1.16",
"progressbar2",
"h5py <3.0.0",
],
)