nancy/setup.cfg
2022-09-17 12:57:15 -04:00

46 lines
797 B
INI

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