45 lines
753 B
INI
45 lines
753 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:nancy.__version__
|
|
|
|
[tool:pytest]
|
|
testpaths = tests
|
|
addopts = --verbose
|
|
|
|
[aliases]
|
|
test=pytest
|
|
|
|
[options]
|
|
packages =
|
|
nancy
|
|
install_requires =
|
|
click
|
|
dill
|
|
tests_require =
|
|
pytest
|
|
python_requires = >=3.7
|
|
|
|
[options.entry_points]
|
|
console_scripts =
|
|
nancy = nancy.__main__:main
|
|
|
|
[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
|