This repository has been archived by the owner on Oct 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (48 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""
Setup
- Properly install CritOpS
Andrew Johnson
Install with python setup.py install
"""
from setuptools import setup
shortDesc = 'A Critical Optimization Search Tool for NEWT'
longDesc = r"""
______ _ __ ____ _____ _ _________ ________
/ ____/____(_) /_/ __ \____ / ___/ / | / / ____/ | / /_ __/
/ / / ___/ / __/ / / / __ \\__ \_____/ |/ / __/ | | /| / / / /
/ /___/ / / / /_/ /_/ / /_/ /__/ /____/ /| / /___ | |/ |/ / / /
\____/_/ /_/\__/\____/ .___/____/ /_/ |_/_____/ |__/|__/ /_/
/_/
""" + """
critops
A Critical Optimization Search tool for NEWT[1]
A. Johnson
Objective: Iteratively update a parameter in a template NEWT file in
order to obtain a critical system.
[1]: M. D. DeHart, and S. Bowman, "Reactor Physics Methods and Analysis
\tCapabilities in SCALE," Nuclear Technology, Technical Paper
\tvol. 174, no.2, pp. 196-213, 2011."""
vRelease = 2
vMacro = 1
vMicro = 0
vDevel = 'dev'
vDevelMicro = '3'
if vDevel:
version = "{}.{}.{}.{}{}".format(vRelease, vMacro, vMicro, vDevel, vDevelMicro)
else:
version = "{}.{}.{}".format(vRelease, vMacro, vMicro)
installReqs = ['pandas>=0.19']
if __name__ == '__main__':
setup(
name='critops',
version=version,
description=shortDesc,
long_description=longDesc,
maintainer='A. Johnson',
maintainer_email='1drew.e.johnson [at] gmail.com',
url='https://github.com/drewejohnson/critops',
install_requires=installReqs,
python_requires='>=3.4',
packages=['critops'],
license='MIT License'
)