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 = "jelmer@jelmer.uk"}]
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",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.7"
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
|