forked from pynucastro/pynucastro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (19 loc) · 1.05 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
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', 'numba',
'sympy', 'scipy', 'matplotlib',
'ipywidgets', 'numba'],
use_scm_version={"version_scheme": "post-release",
"write_to": "pynucastro/_version.py"},
setup_requires=["setuptools_scm"],
zip_safe=False)