-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
41 lines (35 loc) · 950 Bytes
/
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
[metadata]
name = hydep
version = 0.1.0
description = A framework and library for hybrid depletion schemes
author = Andrew Johnson
author_email = ajohnson400@gatech.edu
python_requires = >= 3.6
[options]
zip_safe=False
package_dir =
=src
packages = find:
install_requires =
numpy
scipy
h5py<3
[options.packages.find]
where=src
[options.extras_require]
serpent = serpentTools>=0.9.2
test = pytest>=3.9.1
sfv = sfv @ git+https://github.com/CORE-GATECH-GROUP/sfv.git@f59e20c8c1170fca831583e8e69d1e577f51d3e4
docs = sphinx;nbsphinx;ipython
[flake8]
exclude=__pycache__,.git,build,dist,src/**/__init__.py
max-line-length=90
[tool:pytest]
addopts = --doctest-modules -W ignore:"Gdk": -W ignore::hydep.DataWarning:
markers =
serpent: mark a test as needing and running Serpent
sfv: mark as test as needing sfv package
flaky: Test that is likely to fail ¯\_(ツ)_/¯
[coverage:run]
source=hydep
concurrency=multiprocessing