-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
75 lines (69 loc) · 2.1 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-ninja-crud"
version = "0.6.2"
description = "🧩 Modular, composable API views for scalable Django Ninja projects, with built-in CRUD."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [{name = "Hicham Bakri", email = "[email protected]"}]
maintainers = [{name = "Hicham Bakri", email = "[email protected]"}]
keywords = ["django", "ninja", "crud", "api", "rest", "framework", "asyncio", "async"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: AsyncIO",
"Framework :: Pydantic",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"django>=4.2",
"django-ninja>=1.0",
]
[project.urls]
Homepage = "https://github.com/hbakri/django-ninja-crud"
Repository = "https://github.com/hbakri/django-ninja-crud"
Documentation = "https://django-ninja-crud.readme.io"
[tool.hatch.build.targets.wheel]
packages = ["src/ninja_crud"]
[tool.uv]
dev-dependencies = [
"coverage>=7.6.0,<8.0",
"pre-commit>=3.5.0,<4.0",
"pydoc-markdown>=4.8.2,<5.0",
"pyyaml>=6.0.1,<7.0",
"python-frontmatter>=1.1.0,<2.0",
"django-rest-testing>=0.1.0,<0.2",
]
[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:", # type hints
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by black
]