-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
79 lines (69 loc) · 2.4 KB
/
pyproject.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[tool.pytest.ini_options]
addopts = "--tb native -v -r fxX --maxfail=100 -p no:warnings --log-info=sqlalchemy.engine "
markers = [
"backend: mark test as for the backend",
]
python_files = "test/*test_*.py"
# SQLAlchemy-Firebird configuration for Black.
[tool.black]
line-length = 79
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
/(
\.github
| \.pytest_cache
| _venv
)/
'''
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlalchemy-firebird"
description = "Firebird for SQLAlchemy"
requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*"
keywords = ["SQLAlchemy", "Firebird", "fdb", "firebird-driver"]
license = {file = "LICENSE"}
authors = [
{name = "Paul Graves-DesLauriers", email="[email protected]"},
{name = "F.D.Castel"},
]
maintainers = [
{name = "Paul Graves-DesLauriers", email="[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database :: Front-Ends",
"Operating System :: OS Independent",
]
dependencies = [
"SQLAlchemy >= 1.4, < 2.0; python_version < '3.8'",
"fdb; python_version < '3.8'",
"SQLAlchemy >= 2.0; python_version >= '3.8'",
"firebird-driver; python_version >= '3.8'",
"packaging",
]
dynamic = ["readme", "version"]
[project.optional-dependencies]
dev = ["pytest", "black", "flake8", "build", "twine"]
test = ["pytest"]
[project.urls]
Documentation = "https://github.com/pauldex/sqlalchemy-firebird/wiki"
Source = "https://github.com/pauldex/sqlalchemy-firebird"
Tracker = "https://github.com/pauldex/sqlalchemy-firebird/issues"
[project.entry-points."sqlalchemy.dialects"]
"firebird" = "sqlalchemy_firebird.firebird:FBDialect_firebird"
"firebird.fdb" = "sqlalchemy_firebird.fdb:FBDialect_fdb"
"firebird.firebird" = "sqlalchemy_firebird.firebird:FBDialect_firebird"
[project.scripts]
prepare-test-environment = "sqlalchemy_firebird:infrastructure.prepare_test_environment"
rebuild-test-databases = "sqlalchemy_firebird:infrastructure.rebuild_test_databases"
[tool.setuptools.dynamic]
readme = {file = ["README.rst"], content-type = "text/x-rst"}
version = {attr = "sqlalchemy_firebird.__version__"}