-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
57 lines (47 loc) · 1.74 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=60.8"]
build-backend = "setuptools.build_meta"
[project]
name = "setuptools-protobuf"
authors = [{name = "Jelmer Vernooij", email = "[email protected]"}]
license = {text = "Apachev2"}
description = "Setuptools protobuf extension plugin"
keywords = ["distutils", "setuptools", "protobuf"]
classifiers = [
"Topic :: Software Development :: Version Control",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.9"
dependencies = ["setuptools>=60.8", 'tomli>=1.2.1; python_version<"3.11"']
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
homepage = "https://github.com/jelmer/setuptools-protobuf"
[project.entry-points."distutils.commands"]
build_protobuf = "setuptools_protobuf:build_protobuf"
clean_protobuf = "setuptools_protobuf:clean_protobuf"
[project.entry-points."setuptools.finalize_distribution_options"]
setuptools_protobuf = "setuptools_protobuf:pyprojecttoml_config"
[project.entry-points."distutils.setup_keywords"]
protobufs = "setuptools_protobuf:protobufs"
[project.optional-dependencies]
mypy = ["mypy-protobuf"]
[tool.setuptools]
packages = ["setuptools_protobuf"]
zip-safe = true
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "setuptools_protobuf.__version__"}
[tool.mypy]
ignore_missing_imports = true