forked from pynucastro/pynucastro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 1.02 KB
/
setup.py
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='pynucastro',
description='Python Interfaces to nuclear reaction rate databases',
url='https://github.com/pynucastro/nucastro',
author='pynucastro development group',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
package_data={"pynucastro": ["library/*", "library/tabular/*", "templates/*",
"templates/starkiller-microphysics/*",
"templates/starkiller-cxx-microphysics/*", "nucdata/*",
"nucdata/AtomicMassEvaluation/*", "nucdata/PartitionFunction/*"]},
install_requires=['networkx', 'numpy', 'sympy',
'scipy', 'matplotlib', 'ipywidgets'],
extras_require={"numba": ["numba"]},
use_scm_version={"version_scheme": "post-release",
"write_to": "pynucastro/_version.py"},
setup_requires=["setuptools_scm"],
zip_safe=False)