-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (40 loc) · 1.18 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
"""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="[email protected]",
packages=find_namespace_packages(),
package_data={
"armicontrib.dif3d": ["templates/*", "templates/**"],
},
entry_points={"console_scripts": ["dif3ddemo=dif3ddemo:main"]},
long_description=README,
install_requires=[
"armi",
"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,
)