Skip to content

Commit edac9a6

Browse files
committed
Move from setup.cfg to pyproject.toml
1 parent 3b7db44 commit edac9a6

File tree

2 files changed

+43
-55
lines changed

2 files changed

+43
-55
lines changed

pyproject.toml

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
11
[build-system]
2-
requires = ["setuptools >= 53.0.0", "wheel"]
2+
requires = ["setuptools >= 65.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "firebird-base"
7+
version = "1.4.3"
8+
description = "Firebird base modules for Python"
9+
readme = "README.rst"
10+
requires-python = ">=3.8"
11+
license = { file = "LICENSE" }
12+
authors = [{ name = "Pavel Císař", email = "[email protected]"}]
13+
keywords = ["Saturnin", "Firebird", "Butler", "Platform", "ZeroMQ"]
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://github.com/FirebirdSQL/python3-base"
34+
Documentation = "https://firebird-base.rtfd.io"
35+
"Bug Reports" = "https://github.com/FirebirdSQL/python3-base/issues"
36+
Funding = "https://www.firebirdsql.org/en/donate/"
37+
Source = "https://github.com/FirebirdSQL/python3-base"
38+
39+
[project.entry-points."firebird.base.protobuf"]
40+
"firebird.base.config" = "firebird.base.config_pb2:DESCRIPTOR"
41+
42+
[tool.setuptools]
43+
zip-safe = true
44+
packages = ["firebird"]
45+

setup.cfg

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

0 commit comments

Comments
 (0)