-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 752 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "firebirdsql"
description = "Firebird RDBMS bindings for python."
readme = "README.rst"
keywords = ["Firebird"]
authors = [
{ name = "Hajime Nakagami", email = "nakagami@gmail.com" }
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Database',
]
dynamic = ["version"]
[project.urls]
"Project" = "https://github.com/nakagami/pyfirebirdsql/"
[tool.setuptools.dynamic]
version = {attr = "firebirdsql.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["firebirdsql*"]