-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.21 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
[project]
name = "django-api-admin"
version = "1.2.2"
description = "A RESTful API implementation of django.contrib.admin, designed for writing custom frontends."
authors = [{name = "Muhammad Salah", email = "msbizzacc0unt@outlook.com"}]
license-files = ["LICENSE", "LICENSE-*"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Or your chosen license
"Operating System :: OS Independent",
]
dependencies = [
"django",
"djangorestframework",
"drf-spectacular",
]
[project.optional-dependencies]
dev = [
"django-cors-headers",
"django-allauth[mfa,socialaccount]>=65.11.1",
"python-dotenv>=1.1.1",
"pytest",
"pytest-django",
"python-dotenv",
]
[project.urls]
Github = "https://github.com/demon-bixia/django-api-admin"
[tool.uv.build-backend]
module-root = ""
source-include = ["assets/**"]
source-exclude = ["<root>/api_admin"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "api_admin.settings"
python_files = ["tests.py", "test_*.py", "*_tests.py"]
[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"aiosmtpd>=1.4.6",
"pytest-django>=4.11.1",
]