-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (84 loc) · 2.36 KB
/
pyproject.toml
File metadata and controls
94 lines (84 loc) · 2.36 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "sqlalchemy-cloudflare-d1"
version = "0.3.9"
description = "A SQLAlchemy dialect for Cloudflare's D1 Serverless SQLite Database"
readme = "README.md"
authors = [
{ name = "Collier King", url = "https://github.com/CollierKing" }
]
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["sqlalchemy", "cloudflare", "d1", "database", "serverless", "sqlite"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"sqlalchemy>=2.0.0",
"httpx>=0.24.0",
"typing-extensions>=4.0.0",
]
[project.optional-dependencies]
async = [
"greenlet>=3.2.3",
]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
"ruff==0.12.4",
]
[project.urls]
Homepage = "https://github.com/collierking/sqlalchemy-cloudflare-d1"
Repository = "https://github.com/collierking/sqlalchemy-cloudflare-d1"
Issues = "https://github.com/collierking/sqlalchemy-cloudflare-d1/issues"
[project.entry-points."sqlalchemy.dialects"]
cloudflare_d1 = "sqlalchemy_cloudflare_d1.dialect:CloudflareD1Dialect"
"cloudflare_d1.async" = "sqlalchemy_cloudflare_d1.dialect_async:CloudflareD1Dialect_async"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 88
target-version = ['py39']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.ruff]
line-length = 88
target-version = "py39"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
asyncio_mode = "auto"
addopts = "--ignore=tests/integration"
[dependency-groups]
dev = [
"codespell>=2.4.1",
"greenlet>=3.2.3",
"mypy>=1.17.0",
"pandas>=2.0.0",
"pytest>=8.4.1",
"pytest-asyncio>=0.21.0",
"pytest-socket>=0.7.0",
"requests>=2.31.0",
"ruff==0.12.4",
]