-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.43 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "fdb"
description = "Legacy Python driver for Firebird 2.5"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4"
license = { file = "LICENSE" }
authors = [
{ name = "Pavel Cisar", email = "pcisar@users.sourceforge.net"},
]
keywords = ["Firebird", "RDBMS", "driver"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Topic :: Software Development",
"Topic :: Database",
]
dependencies = [
]
[project.urls]
Home = "https://github.com/FirebirdSQL/fdb"
Documentation = "https://fdb.rtfd.io"
Issues = "https://github.com/FirebirdSQL/fdb/issues"
Source = "https://github.com/FirebirdSQL/fdb"
[tool.hatch.version]
path = "fdb/fbcore.py"
[tool.hatch.build.targets.sdist]
include = ["fdb"]
[tool.hatch.build.targets.wheel]
packages = ["fdb"]
[tool.hatch.envs.default]
dependencies = [
]
[[tool.hatch.envs.hatch-test.matrix]]
python = ["2.7", "3.11"]