forked from treeverse/dvc-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
75 lines (70 loc) · 1.57 KB
/
setup.cfg
File metadata and controls
75 lines (70 loc) · 1.57 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[metadata]
description = dvc data
name = dvc-data
long_description = file: README.rst
long_description_content_type = text/x-rst
license = Apache-2.0
license_file = LICENSE
url = https://github.com/iterative/dvc-data
platforms=any
authors = Iterative
maintainer_email = support@dvc.org
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Development Status :: 4 - Beta
[options]
python_requires = >=3.8
zip_safe = False
package_dir=
=src
packages = find:
install_requires=
funcy>=1.14
dictdiffer>=0.8.1
pygtrie>=2.3.2
shortuuid>=0.5.0
dvc-objects==0.0.23
diskcache>=5.2.1
nanotime>=0.5.2
[options.extras_require]
cli =
typer>0.4,<0.6
rich>=10.11.0,<13.0.0
all =
%(cli)s
tests =
pytest==7.1.2
pytest-sugar==0.9.4
pytest-cov==3.0.0
pytest-mock==3.8.1
pylint==2.14.4
mypy==0.961
pytest-servers[s3]==0.0.3
dev =
%(all)s
%(tests)s
[options.entry_points]
console_scripts =
dvc-data = dvc_data.__main__:main
[options.packages.find]
exclude =
tests
tests.*
where=src
[flake8]
ignore=
E203, # Whitespace before ':'
E266, # Too many leading '#' for block comment
W503, # Line break occurred before a binary operator
P1, # unindexed parameters in the str.format, see:
# https://pypi.org/project/flake8-string-format/
max_line_length = 79
max-complexity = 15
select = B,C,E,F,W,T4,B902,T,P
show_source = true
count = true
per-file-ignores =
src/dvc_data/cli.py:B008