forked from terrapower/armicontrib-dif3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.39 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
34
35
36
37
38
39
40
41
42
43
44
45
46
"""Setup.py script for the Open Source DIF3D ARMI plugin"""
from setuptools import setup, find_namespace_packages
with open("README.md") as f:
README = f.read()
setup(
name="armicontrib-dif3d",
version="1.0",
description=("ARMI plugin for neutronics analysis with DIF3D."),
author="TerraPower LLC",
author_email="armi-devs@terrapower.com",
packages=find_namespace_packages(),
package_data={
"armicontrib.dif3d": ["templates/*", "templates/**"],
},
entry_points={"console_scripts": ["dif3ddemo=dif3ddemo:main"]},
long_description=README,
install_requires=[
# ARMI 0.1.6 is needed since it is the last version before Locations were
# removed, which this still uses. Need to refactor to grids/spatial locators to
# target newer ARMI versions
"armi==0.1.6",
"jinja2",
"terrapower-dragon",
],
extras_require={
"dev": [
"pytest",
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc",
"sphinxcontrib-needs",
"sphinxcontrib-plantuml",
]
},
keywords=["ARMI, DIF3D", "Neutronics"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
],
test_suite="tests",
include_package_data=True,
)