-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.35 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
[project]
name = "convex"
version = "0.7.0" # Also update in __init__.py
description = "Python client for the reactive backend-as-a-service Convex."
authors = [
{ name = "Convex, Inc", email = "support@convex.dev" },
]
requires-python = ">=3.9.2"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: JavaScript",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Rust",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules"
]
license = "Apache-2.0"
dependencies = [
"requests>=2.32.0,<3",
]
[project.urls]
homepage = "https://convex.dev"
repository = "https://github.com/get-convex/convex-py"
documentation = "https://docs.convex.dev"
[build-system]
requires = ["maturin>=1.2,<2.0"]
build-backend = "maturin"
[dependency-groups]
dev = [
"maturin>=1.2,<2.0",
"mypy~=1.0",
"pytest>=8.0.0,<9",
"pytest-profiling>=1.7.0,<2",
"twine>=6.0.0,<7",
"types-requests>=2.27.30,<3",
"typing-extensions>=4.4.0,<5",
]
[tool.maturin]
python-source = "python"
python-packages = ["convex", "_convex"]
bindings = "pyo3"
features = ["pyo3/extension-module"]
[tool.pytest.ini_options]
addopts = "--doctest-modules"
testpaths = [
"tests",
"integration",
"convex"
]
[tool.mypy]
strict = true
[tool.isort]
skip = [".venv"]