-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
53 lines (49 loc) · 1.35 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
[metadata]
name = setuptools-grpc
version = attr: setuptools_grpc.__version__
author = Jan Musílek
author_email = jan.musilek@nic.cz
description = Plugin for setuptools and grpc / protobuf python module build
url = https://github.com/CZ-NIC/setuptools-grpc
long_description = file: README.rst
license = GPLv3+
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
Programming Language :: Python
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 :: Build Tools
[options]
zip_safe = false
packages =
setuptools_grpc
include_package_data = true
python_requires = ~=3.8
install_requires =
setuptools
grpcio-tools ~= 1.49
[options.entry_points]
distutils.commands =
build_grpc = setuptools_grpc.build_grpc:build_grpc
setuptools.finalize_distribution_options =
setuptools_grpc = setuptools_grpc:inject_build
[options.extras_require]
quality =
doc8
ruff
test =
build
pytest
pytest-cov
testfixtures
wheel
wheel-inspect
[doc8]
max-line-length = 120
allow-long-titles = true