-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.23 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
[project]
name = "sqlalchemy-libsql"
version = "0.2.0-pre.1"
description = "SQLAlchemy dialect for libSQL"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [
{ name = "Levy Albuquerque", email = "[email protected]" },
]
keywords = ["sqlalchemy", "libsql", "database", "dialect"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
]
dependencies = [
"libsql-experimental>=0.0.47",
"sqlalchemy>=2.0.0",
"greenlet>=3.0.3",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-cov>=4.1.0",
"pytest-asyncio>=0.23.5",
]
[project.urls]
Homepage = "https://github.com/tursodatabase/libsql-sqlalchemy"
Documentation = "https://github.com/tursodatabase/libsql-sqlalchemy#readme"
Repository = "https://github.com/tursodatabase/libsql-sqlalchemy.git"
Issues = "https://github.com/tursodatabase/libsql-sqlalchemy/issues"
[project.entry-points."sqlalchemy.dialects"]
"sqlite.libsql" = "sqlalchemy_libsql:SQLiteDialect_libsql"
"sqlite.aiolibsql" = "sqlalchemy_libsql:SQLiteDialect_aiolibsql"