forked from tursodatabase/turso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (79 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
88 lines (79 loc) · 2.25 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
[build-system]
requires = ['maturin>=1,<2', 'typing_extensions']
build-backend = 'maturin'
[project]
name = 'pyturso'
description = "Turso is a work-in-progress, in-process OLTP database management system, compatible with SQLite."
requires-python = '>=3.9'
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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',
'Programming Language :: Rust',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Topic :: Database',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Database :: Database Engines/Servers',
]
dependencies = ['typing-extensions >=4.6.0,!=4.7.0']
dynamic = ['readme', 'version']
[project.optional-dependencies]
dev = [
"mypy==1.11.0",
"pytest==8.3.1",
"pytest-cov==5.0.0",
"ruff==0.5.4",
"coverage==7.6.1",
"maturin==1.7.8",
]
[project.urls]
Homepage = "https://github.com/tursodatabase/turso"
Source = "https://github.com/tursodatabase/turso"
[tool.maturin]
bindings = 'pyo3'
module-name = "turso._turso"
features = ["pyo3/extension-module"]
[tool.pip-tools]
strip-extras = true
header = false
upgrade = false
[tool.pytest.ini_options]
testpaths = 'tests'
log_format = '%(name)s %(levelname)s: %(message)s'
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
source = ['turso']
branch = true
[tool.coverage.report]
precision = 2
exclude_lines = [
'pragma: no cover',
'raise NotImplementedError',
'if TYPE_CHECKING:',
'@overload',
]
[dependency-groups]
dev = [
"coverage>=7.6.1",
"iniconfig>=2.1.0",
"maturin>=1.7.8",
"mypy>=1.11.0",
"mypy-extensions>=1.1.0",
"pluggy>=1.6.0",
"pytest>=8.3.1",
"pytest-asyncio>=1.3.0",
"pytest-cov>=5.0.0",
"requests>=2.32.5",
"ruff>=0.5.4",
"typing-extensions>=4.13.0",
]