forked from CORE-GATECH-GROUP/serpent-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
57 lines (53 loc) · 1.35 KB
/
setup.cfg
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
[metadata]
name = serpentTools
version = 0.10.0.dev0
description =A suite of parsers for expediting analysis with Serpent
long_description = file: README.rst
url ="https://github.com/CORE-GATECH-GROUP/serpent-tools"
author=serpentTools developer team
maintainer=Andrew Johnson
keywords=Serpent, parsers, nuclear engineering, transport
license=MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
include_package_data=True
install_requires =
numpy>=1.16.0
matplotlib>=2.2.3,<=3.3.4
pyyaml>=5.1.1
packages = find:
python_requires = >=3.5, <3.9
[flake8]
exclude =
.tox,
__pycache__,
.pyc,
build,
_build,
dist,
.git,
serpentTools/__init__.py
serpentTools/objects/__init__.py
# to ignore
# E402: Module level import not at top of file
# W503: Line break before binary operator
ignore =
E402
W503
[tool:pytest]
addopts=-rs
[coverage:run]
branch = true
source = serpentTools