nancy/setup.cfg

42 lines
758 B
INI

[metadata]
name = DProv
author = Jacob Hinkle
author_email = hinklejd@ornl.gov
url = https://code.ornl.gov/4jh/dprov
keywords = data-science workflows reproducibility provenance
version = attr: setuptools_scm.get_version
[tool:pytest]
testpaths = tests
addopts = --verbose --cov dprov/
[aliases]
test=pytest
[options]
packages =
superfun
install_requires =
dill
setup_requires =
setuptools_scm
tests_require =
coverage
pytest
pytest-cov
pytest-runner
python_requires = >=3.6
use_scm_version = True
[flake8]
exclude = .eggs,
.git,
__pycache__,
dprov.egg-info,
build,
dist
# allow a little bit longer lines than default (79)
ignore = W504
max-line-length= 99
show-source = True