|
1 | 1 | [build-system] |
2 | 2 | requires = ["setuptools >= 65.0.0", "wheel"] |
3 | 3 | build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "firebird-butler-protobuf" |
| 7 | +version = "0.5.0" |
| 8 | +description = "Firebird Butler protocol buffers" |
| 9 | +readme = "README.rst" |
| 10 | +requires-python = ">=3.8, <4" |
| 11 | +license = { file = "LICENSE" } |
| 12 | +authors = [{ name = "Pavel Císař", email = "pcisar@users.sourceforge.net"}] |
| 13 | +keywords = ["Firebird", "Butler", "protobuf"] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 5 - Production/Stable", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Programming Language :: Python :: 3 :: Only", |
| 19 | + "Programming Language :: Python :: 3.8", |
| 20 | + "Programming Language :: Python :: 3.9", |
| 21 | + "Programming Language :: Python :: 3.10", |
| 22 | + "Programming Language :: Python :: 3.11", |
| 23 | + "Operating System :: POSIX :: Linux", |
| 24 | + "Operating System :: Microsoft :: Windows", |
| 25 | + "Operating System :: MacOS", |
| 26 | + "Topic :: Software Development", |
| 27 | + ] |
| 28 | +dependencies = [ |
| 29 | + "protobuf>=4.21.0, <5", |
| 30 | + ] |
| 31 | + |
| 32 | +[project.urls] |
| 33 | +Home = "https://firebirdsql.org/en/firebird-butler-dev/" |
| 34 | +Documentation = "https://firebird-butler.rtfd.io" |
| 35 | +"Bug Reports" = "https://github.com/FirebirdSQL/Butler/issues" |
| 36 | +Funding = "https://www.firebirdsql.org/en/donate/" |
| 37 | +Source = "https://github.com/FirebirdSQL/Butler/python" |
| 38 | + |
| 39 | +[project.entry-points."firebird.butler.protobuf"] |
| 40 | +"firebird.butler.fbdp" = "firebird.butler.fbdp_pb2:DESCRIPTOR" |
| 41 | +"firebird.butler.fbsd" = "firebird.butler.fbsd_pb2:DESCRIPTOR" |
| 42 | +"firebird.butler.fbsp" = "firebird.butler.fbsp_pb2:DESCRIPTOR" |
| 43 | + |
| 44 | +[tool.setuptools] |
| 45 | +zip-safe = true |
0 commit comments