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