forked from ukaea/neutronics_material_maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 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
23
24
25
26
27
28
29
30
31
32
33
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="neutronics_material_maker",
version="0.3.4",
summary="Package for making material cards for neutronics codes",
author="neutronics_material_maker development team",
author_email="[email protected]",
description="A tool for making neutronics material cards for use in OpenMC, MCNP, Serpent, Shift and Fispact",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ukaea/neutronics_material_maker",
packages=setuptools.find_packages(),
zip_safe=True,
package_dir={"neutronics_material_maker": "neutronics_material_maker"},
package_data={
"neutronics_material_maker": [
"requirements.txt",
"README.md",
"LICENSE.txt",
"data/*.json",
]
},
tests_require=["pytest-cov", "pytest-runner"],
install_requires=[
"coolprop",
"asteval",
# 'openmc' when pip install is available
],
)