-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
52 lines (46 loc) · 1.35 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
[tool.black]
line-length = 79
target-version = ['py37']
[tool.pytest.ini_options]
addopts = "--tb native -v -r sfxX --maxfail=25 -p no:warnings"
[tool.poetry]
name = "sqlalchemy-libsql"
version = "0.1.0"
authors = [
"Douglas Montes <[email protected]>",
"Gustavo Sverzut Barbieri <[email protected]>",
"ChiselStrike",
]
description = "LibSQL.org for SQLAlchemy"
keywords = [
"SQLAlchemy",
"LibSQL",
"SQLite",
"Database",
]
homepage = "https://github.com/libsql/sqlalchemy-libsql"
repository = "https://github.com/libsql/sqlalchemy-libsql"
documentation = "https://libsql.org/sqlalchemy-libsql/"
readme = "README.rst"
license = "MIT"
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",
]
[tool.poetry.plugins."sqlalchemy.dialects"]
"sqlite.libsql" = "sqlalchemy_libsql:SQLiteDialect_libsql"
[tool.poetry.dependencies]
python = "^3.7"
SQLAlchemy = "^2.0.0"
libsql-client = "^0.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"