-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
98 lines (88 loc) · 2.36 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[metadata]
name = etcetra
version = attr: src.etcetra.__version__
description = Etcd client built with pure asyncio gRPC library
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/lablup/etcetra
author = Lablup Inc.
author_email = [email protected]
license = Apache License 2.0
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Topic :: Software Development
project_urls =
Documentation = https://github.com/lablup/etcetra/blob/main/docs/references.md
Source = https://github.com/lablup/etcetra
Tracker = https://github.com/lablup/etcetra/issues
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.10
setup_requires =
setuptools>=51.1.1
wheel>=0.36.2
install_requires =
protobuf~=4.25.3
grpcio==1.62.2
grpcio-tools==1.62.2
zip_safe = false
include_package_data = true
[options.extras_require]
build =
wheel>=0.36.2
twine>=3.4.1
test =
pytest~=6.2.5
pytest-asyncio~=0.16.0
pytest-cov>=2.11
pytest-mock>=3.5.0
codecov
dev =
lint =
flake8>=4.0.1
flake8-commas>=2.1
typecheck =
mypy>=1.4.1
types-protobuf
types-setuptools
[options.packages.find]
where = src
include = *
[options.package_data]
etcetra = py.typed
[bdist_wheel]
universal = false
[flake8]
# ref: http://pep8.readthedocs.io/en/latest/intro.html#error-codes
ignore = E126,E127,E129,E221,E241,E722,E731,E401,W503,W504,N801,N802
max-line-length = 105
builtins = _
exclude = .git,.cache,.idea,.egg,__pycache__,venv,build,docs,alembic,src/etcetra/grpc_api/**/*,src/etcetra/grpc_api/*
[tool:pytest]
testpaths = tests
markers =
integration: Test cases that require spawning Dockerized kernel sessions
[mypy]
ignore_missing_imports = true
mypy_path = src
exclude = src/etcetra/grpc_api/
namespace_packages = true
explicit_package_bases = true
[mypy-etcetra.grpc_api.*]
follow_imports = skip
[yapf]
based_on_style = facebook
spaces_before_comment = 2
column_limit = 105
blank_line_before_nested_class_or_def = true