forked from petercable/grpc_requests
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
59 lines (52 loc) · 1.55 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
[metadata]
name = grpc_requests
# Version needs regex in setup.py.
url = https://github.com/wesky93/grpc_requests
license = Apache License 2.0
author = wesky93
author_email = [email protected]
maintainer = ViridianForge
maintainer_email = [email protected]
description = grpc for Humans. grpc reflection support client
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
classifiers =
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
package_dir = = src
include_package_data = true
python_requires = >= 3.8
# Dependencies are in setup.py for GitHub's dependency graph.
[options.packages.find]
where = src
exclude =
tests
;[options.entry_points]
;console_scripts =
; grequests = grpc_requests.cli:cli
[flake8]
ignore = E226,E302,E41
exclude = ./*/.venv,./*/venv,venv,.venv,./node_modules,./*/*_pb2.py,./*/*_pb2_grpc.py,build
max-line-length = 120
per-file-ignores =
# __init__ module exports names
src/grpc_requests/__init__.py: F401
./src/grpc_requests/__init__.py: F401
[tool:pytest]
addopts =
--verbose
testpaths =
src/tests
pythonpath =
src