-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 831 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 831 Bytes
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
from setuptools import setup, find_packages
setup(
name='pystellarmerger',
version='0.1',
description='Python framework for simulating 1D stellar mergers',
author='Max Heller',
author_email='max.heller@h-its.org',
packages=find_packages(where="src"),
entry_points={
'console_scripts': [
'pystellarmerger=PyStellarMerger.StellarMerger:main',
'pymmams=PyStellarMerger.pymmams.PyMMAMS:main',
'entropysorting=PyStellarMerger.entropysorting.EntropySorting:main',
],
},
include_package_data=True,
package_data={
'PyStellarMerger.data': ['isotopes.pkl', 'units.py'],
},
package_dir={"": "src"},
python_requires='>=3.6',
install_requires=[
'numpy',
'scipy',
'numba',
'mesa_reader',
]
)