Skip to content

Commit 19ca9bb

Browse files
committed
Move from setup.cfg to pyproject.toml, changed tree layout
1 parent 0a5899d commit 19ca9bb

7 files changed

Lines changed: 42 additions & 57 deletions

File tree

python/MANIFEST.in

Lines changed: 0 additions & 1 deletion
This file was deleted.

python/pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
11
[build-system]
22
requires = ["setuptools >= 65.0.0", "wheel"]
33
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

python/setup.cfg

Lines changed: 0 additions & 56 deletions
This file was deleted.

python/src/firebird/butler/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)