-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
24 lines (21 loc) · 890 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='validation',
author='The OpenMC Development Team',
author_email='openmc-dev@googlegroups.com',
description='A collection of validation scripts for OpenMC',
url='https://github.com/openmc-dev/validation',
packages=['validation', 'benchmarking'],
package_data={'benchmarking': ['uncertainties.csv']},
entry_points={
'console_scripts': [
'openmc-validate-neutron-physics=validation.neutron_physics:main',
'openmc-validate-photon-physics=validation.photon_physics:main',
'openmc-validate-photon-production=validation.photon_production:main',
'openmc-run-benchmarks=benchmarking.benchmark:main',
'openmc-plot-benchmarks=benchmarking.plot:main',
'openmc-report-benchmarks=benchmarking.report:main',
]
}
)