forked from ferrumio/pydynox
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (77 loc) · 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (77 loc) · 2.13 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.7,<2.0"]
build-backend = "maturin"
[project]
name = "pydynox"
version = "0.10.0"
description = "A fast DynamoDB ORM for Python with a Rust core"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Leandro Cavalcante Damascena", email = "leandro.damascena@gmail.com" },
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT 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://leandrodamascena.github.io/pydynox"
Repository = "https://github.com/leandrodamascena/pydynox"
Homepage = "https://github.com/leandrodamascena/pydynox"
[project.optional-dependencies]
pydantic = ["pydantic>=2.0"]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"pytest-benchmark>=4.0",
"pytest-codspeed>=4.2.0",
"hypothesis>=6.100",
"testcontainers>=4.0",
"boto3>=1.35",
"pydantic>=2.0",
"pynamodb>=6.0",
"ruff>=0.8",
"mypy>=1.0",
]
docs = ["zensical"]
[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"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = "pydynox.pydynox_core"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pydantic.*"
ignore_missing_imports = true