-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (51 loc) · 1.69 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
56
57
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gaussdb-sqlalchemy-python-driver"
version = "0.2.0"
description = "SQLAlchemy ODBC dialect for Huawei GaussDB centralized."
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
authors = [{ name = "GaussDB Python Driver Contributors" }]
keywords = ["gaussdb", "sqlalchemy", "database", "driver", "odbc", "windows"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"SQLAlchemy>=2.0,<2.2",
"pyodbc>=5.0",
]
[project.optional-dependencies]
test = [
"alembic>=1.13",
"pytest>=8",
]
[project.urls]
Homepage = "https://github.com/jarrenL/GaussDB-SQLAlchemy-Python-Driver"
Issues = "https://github.com/jarrenL/GaussDB-SQLAlchemy-Python-Driver/issues"
[project.entry-points."sqlalchemy.dialects"]
gaussdb = "gaussdb_sqlalchemy.odbc:GaussDBDialect_odbc"
"gaussdb.odbc" = "gaussdb_sqlalchemy.odbc:GaussDBDialect_odbc"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"
markers = [
"integration: tests that require a live GaussDB database",
]