-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.cfg
More file actions
100 lines (96 loc) · 2.13 KB
/
Copy pathsetup.cfg
File metadata and controls
100 lines (96 loc) · 2.13 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[metadata]
description = dvc objects
name = dvc-objects
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-objects
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=
tqdm>=4.63.1,<5
shortuuid>=0.5.0
flatten_dict>=0.4.1,<1
funcy>=1.14
diskcache>=5.2.1
fsspec>=2021.10.1
nanotime>=0.5.2
typing-extensions>=3.7.4
[options.extras_require]
tests =
pytest==7.1.2
pytest-benchmark==3.4.1
pytest-sugar==0.9.4
pytest-cov==3.0.0
pytest-mock==3.7.0
pylint==2.13.9
mypy==0.960
all =
%(azure)s
%(gdrive)s
%(gs)s
%(hdfs)s
%(http)s
%(oss)s
%(s3)s
%(ssh)s
%(webdav)s
azure =
adlfs>=2021.10.0
azure-identity>=1.4.0
knack
gdrive = pydrive2[fsspec]>=1.10.1
gs = gcsfs>=2021.11.1
hdfs =
# due to https://github.com/python-poetry/poetry/issues/4683, we have to
# explicitly specify pyarrow here
pyarrow>=1
fsspec[arrow]
http =
aiohttp-retry>=2.4.5
oss = ossfs>=2021.8.0
s3 =
s3fs[boto3]>=2022.02.0
aiobotocore[boto3]>2
ssh =
# due to https://github.com/python-poetry/poetry/issues/4683, we have to
# explicitly specify bcrypt here
bcrypt
sshfs[bcrypt]>=2021.11.2
webdav = webdav4>=0.9.3
# not to break `dvc[webhdfs]`
webhdfs =
dev =
%(tests)s
%(all)s
[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