-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.cfg
58 lines (53 loc) · 1.42 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
[metadata]
name = envoy.gpg.sign
version = file: VERSION
author = Ryan Northey
author_email = [email protected]
maintainer = Ryan Northey
maintainer_email = [email protected]
license = Apache Software License 2.0
url = https://github.com/envoyproxy/toolshed/tree/main/envoy.gpg.sign
description = "GPG signing util used in Envoy proxy's CI"
long_description = file: README.rst
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
[options]
python_requires = >=3.5
py_modules = envoy.gpg.sign
packages = find_namespace:
install_requires =
aio.run.runner>=0.3.4
envoy.base.utils>=0.5.10
envoy.gpg.identity>=0.1.1
[options.extras_require]
test =
pytest
pytest-coverage
pytest-patches
lint = flake8
types = mypy
publish = wheel
[options.package_data]
* = py.typed
envoy.gpg.sign =
rpm_macro.tmpl
[options.entry_points]
console_scripts =
envoy.gpg.sign = envoy.gpg.sign:cmd
[options.packages.find]
include = envoy.*
exclude =
build.*
tests.*
dist.*