-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.cfg
More file actions
64 lines (59 loc) · 1.59 KB
/
Copy pathsetup.cfg
File metadata and controls
64 lines (59 loc) · 1.59 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
[metadata]
name = envoy.code.check
version = file: VERSION
author = Ryan Northey
author_email = ryan@synca.io
maintainer = Ryan Northey
maintainer_email = ryan@synca.io
license = Apache Software License 2.0
url = https://github.com/envoyproxy/toolshed/tree/main/py/envoy.code.check
description = Code checker used in Envoy proxy CI
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
Typing :: Typed
[options]
python_requires = >=3.12
packages = find_namespace:
install_requires =
abstracts>=0.2.0
aio.core>=0.11.1
aio.run.checker>=0.6.1
envoy.base.utils>=0.6.10
flake8>=6.1.0
packaging>=23.0
pep8-naming>=0.13.3
yamllint>=1.32.0
yapf>=0.40.2
[options.extras_require]
test =
pytest>=7.4.0
pytest-asyncio>=0.23.3
pytest-cov
pytest-iters>=0.1.0
pytest-patches>=0.1.0
lint = flake8>=6.1.0
types =
mypy>=1.6.0
mypy-abstracts>=0.1.1
types-pyyaml
publish = wheel>=0.41.0
[options.package_data]
envoy.code.check = py.typed
[options.entry_points]
console_scripts =
envoy.code.check = envoy.code.check:run
[options.packages.find]
include =
envoy.code.check
envoy.code.check.*