forked from openmc-dev/plotter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.57 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.57 KB
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
from setuptools import setup
kwargs = {
'name': 'openmc-plotter',
'version': '0.2.0',
'packages': ['openmc_plotter'],
'package_data': {'openmc_plotter' : ['assets/*.png']},
'entry_points': {
'console_scripts': [
'openmc-plotter=openmc_plotter.__main__:main'
]
},
# Metadata
'author': 'OpenMC Development Team',
'author_email': 'openmc@anl.gov',
'description': 'Plotting tool for OpenMC models and tally data',
'url': 'https://github.com/openmc-dev/plotter',
'download_url': 'https://github.com/openmc-dev/plotter',
'project_urls': {
'Issue Tracker': 'https://github.com/openmc-dev/plotter/issues',
'Source Code': 'https://github.com/openmc-dev/plotter',
},
'classifiers': [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
# Dependencies
'python_requires': '>=3.6',
'install_requires': [
'openmc>0.12.2', 'numpy', 'matplotlib', 'PySide2'
],
'extras_require': {
'test' : ['pytest', 'pytest-qt'],
'vtk' : ['vtk']
},
}
setup(**kwargs)