-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
83 lines (74 loc) · 1.63 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[metadata]
name = blocksync
version = 3.0.1
description =
Synchronize files to a destination(local/remote) using a incremental algorithm
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ehdgua01/blocksync
author = ehdgua01
author_email = [email protected]
license = MIT
license_file = LICENSE
keywords = file synchronize, incremental algorithm
classifier =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
install_requires =
paramiko
python_requires = >=3.8
[options.packages.find]
exclude =
tests*
[options.package_data]
blocksync =
py.typed
[tox:tox]
envlist = py38, py39
[testenv]
commands =
pip install -r test-requirements.txt
pytest --cov-report term-missing:skip-covered --cov=blocksync
[flake8]
exclude = venv build
max-line-length = 120
ignore =
E203,
E231,
E701,
E722,
W503,
E501
[tool:pytest]
testpaths = tests
addopts = --disable-socket
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if .debug:
raise NotImplementedError
if __name__ == .__main__.:
if TYPE_CHECKING
ignore_errors = True
omit =
venv/*
tests/*
setup.py
*/_read_server.py
*/_write_server.py
[mypy]
python_version = 3.8
check_untyped_defs = True
ignore_errors = False
ignore_missing_imports = True
show_error_codes = True
strict_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True