-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (68 loc) · 1.99 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "pydynox"
version = "1.3.0"
description = "A fast DynamoDB ORM for Python with a Rust core"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "Leandro Cavalcante Damascena", email = "leandro.damascena@gmail.com" },
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Topic :: Database",
]
keywords = ["dynamodb", "orm", "aws", "rust", "python"]
[project.urls]
Documentation = "https://ferrumio.github.io/pydynox"
Repository = "https://github.com/ferrumio/pydynox"
Homepage = "https://github.com/ferrumio/pydynox"
[project.optional-dependencies]
pydantic = ["pydantic>=2.0"]
opentelemetry = ["opentelemetry-api>=1.0"]
[project.entry-points.pytest11]
pydynox = "pydynox.testing.pytest_plugin"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-benchmark>=4.0",
"pytest-codspeed>=4.2.0",
"pytest-memray>=1.7",
"hypothesis>=6.100",
"testcontainers>=4.0",
"boto3>=1.35",
"pydantic[email]>=2.0",
"pynamodb>=6.0",
"aws-lambda-powertools>=3.0",
"ruff>=0.8",
"ty>=0.0.17",
"opentelemetry-api>=1.0",
"opentelemetry-sdk>=1.0",
"pytest-cov>=7.0.0",
]
docs = ["zensical", "pdoc3>=0.11.0"]
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "pydynox.pydynox_core"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]