-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
51 lines (46 loc) · 1.29 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
42
43
44
45
46
47
48
49
50
51
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = {}
with open("nnaps/version.py") as fp:
exec(fp.read(), version)
install_requires = [
"numpy >= 1.19",
"scipy >= 1.3",
"pandas >= 0.25",
"keras >= 2.3",
"scikit-learn >= 0.22.1",
"pyyaml >= 5.3",
"h5py >= 2.9",
"matplotlib",
"bokeh",
"tables",
"six",
"astropy",
]
setuptools.setup(
name="nnaps",
version=version['__version__'],
author="Joris Vos",
author_email="joris.vos@uv.cl",
description="Neural Network assisted Population Synthesis tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vosjo/nnaps",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=install_requires,
test_suite='pytest.collector',
tests_require=['pytest'],
entry_points = {
'console_scripts': ['nnaps-mesa=nnaps.mesa.main:main'],
},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Astronomy",
],
python_requires='>=3.7',
)