-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.54 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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "ormar-utils"
version = "0.2.0"
description = "Rust-accelerated utility functions for the ormar ORM"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [
{ name = "Radosław Drążkiewicz", email = "collerek@gmail.com" },
]
keywords = ["ormar", "orm", "rust", "performance"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
]
[project.urls]
Homepage = "https://github.com/ormar-orm/ormar-utils"
Repository = "https://github.com/ormar-orm/ormar-utils"
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.poetry]
name = "ormar-utils"
version = "0.2.0"
description = "Rust-accelerated utility functions for the ormar ORM"
authors = ["Radosław Drążkiewicz <collerek@gmail.com>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
maturin = "^1.0"
pre-commit = "^3.0"
ruff = "^0.15"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"