forked from pynucastro/pynucastro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 1.07 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
from setuptools import setup, find_packages
setup(name='pynucastro',
description='A python library for nuclear astrophysics',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
url='https://github.com/pynucastro/pynucastro',
author='pynucastro development group',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
package_data={"pynucastro": ["library/*", "library/tabular/*", "templates/*", "library/tabular/suzuki/*",
"templates/amrexastro-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)