-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.61 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "ConnectKit-Database"
version = "2.2.0"
description = "Wrapper for connection to database"
authors = [
{ name = "RealMetamorph", email = "andr.timchuk@yandex.ru" },
]
keywords = ["connectkit", "database", "postgres", "postgresql",
"mysql", "sqlite3", "sqlite", "mariadb", "async", "asyncio", "sqlalchemy"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Topic :: Database :: Front-Ends",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License"
]
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"sqlalchemy>=2.0.39",
"pydantic>=2.10.6",
"pydantic-settings>=2.8.1"
]
[project.urls]
Homepage = "https://github.com/mtuciru/ConnectKit-Database"
Repository = "https://github.com/mtuciru/ConnectKit-Database.git"
[project.optional-dependencies]
postgresql = [
"psycopg[binary]>=3.2.6",
]
asyncpg = [
"psycopg[binary]>=3.2.6",
"sqlalchemy[asyncio]>=2.0.39",
]
mysql = [
"mysqlclient>=2.2.7",
]
aiomysql = [
"aiomysql>=0.2.0",
"sqlalchemy[asyncio]>=2.0.39"
]
aiosqlite = [
"aiosqlite>=0.21.0",
"sqlalchemy[asyncio]>=2.0.39",
]
all = [
"ConnectKit-Database[mysql,postgresql]",
]
asyncall = [
"ConnectKit-Database[asyncpg,aiomysql,aiosqlite]",
]
orjson = [
"orjson>=3.10.15",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.scripts]
tests = "echo 'tests will be here'"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
]