-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.cfg
61 lines (52 loc) · 1.11 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
58
59
60
[tool:pytest]
testpaths = tests
addopts =
-p no:warnings
[pylint]
max-line-length=120
report=y
output-format=parseable
const-naming-style=any
disable=missing-docstring,too-few-public-methods
[flake8]
max-line-length = 120
exclude = tests/large/check_consistency/data
[metadata]
name=mlvtools
version=2.2.0.dev0
license_file = LICENSE
description = Set of Machine Learning versioning helpers
long_description = file: README.md
long_description_content_type = text/markdown
author = PeopleDoc
author_email = pdoc-team-ml@ultimatesoftware.com
url = http://github.com/peopledoc/ml-versionning-tools
keywords = peopledoc, machine learning, versioning, mlvtools
classifiers =
Programming Language :: Python :: 3
python_requires = >=3.6
[options]
zip_safe = False
include_package_data = True
packages = mlvtools
install_requires =
docstring-parser>=0.3
Jinja2>=2.10.1
nbconvert
pydantic>=1.0
PyYAML
networkx
yapf
[options.extras_require]
dev =
pytest
flake8
pytest-cov
pytest-mock
twine
dvc==0.94.1
[options.packages.find]
exclude =
tests
[bdist_wheel]
universal = 1