-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (112 loc) · 2.67 KB
/
Copy pathpyproject.toml
File metadata and controls
122 lines (112 loc) · 2.67 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["apps"]
[project]
name = "django-project-template"
version = "0.1.0"
description = "A modern Django project template"
readme = "README.md"
authors = [
{name = "Valor Engels", email = "your_email@example.com"}
]
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
requires-python = ">=3.11"
dependencies = [
"Django>=4.0",
"django-extensions",
"django-filter",
"django-debug-toolbar",
"django-cors-headers",
"djangorestframework",
"djangorestframework-api-key",
"psycopg2",
"python-dotenv",
"dj-database-url",
"gunicorn",
"whitenoise",
"django-storages",
"django-widget-tweaks",
"django-htmx",
"django-unfold",
"selenium",
"django-tailwind-cli>=4.3.0",
"drf-yasg>=1.21.10",
"pydantic-ai>=0.7.0",
"openai>=1.99.1",
"mcp>=1.13.0",
"mcp-python>=0.1.4",
]
[project.optional-dependencies]
dev = [
"django-browser-reload",
"Werkzeug",
"aider-chat",
"black",
"flake8",
"mypy",
"django-stubs",
"ipython",
]
test = [
"pytest",
"pytest-cov",
"pytest-django",
"factory-boy",
]
e2e = [
"browser-use>=0.1.40",
"playwright>=1.40.0",
"pytest-asyncio>=0.23.0",
]
[project.urls]
Homepage = "https://github.com/yourusername/django-project-template"
Issues = "https://github.com/yourusername/django-project-template/issues"
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311", "py312"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
[tool.mypy]
python_version = "3.12"
plugins = ["mypy_django_plugin.main"]
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
[tool.django-stubs]
django_settings_module = "settings"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "settings"
python_files = "test_*.py"
testpaths = ["apps"]
filterwarnings = [
"ignore::RuntimeWarning:django.db.models.fields",
]
[dependency-groups]
dev = [
"django-browser-reload>=1.18.0",
"pre-commit>=4.3.0",
]
e2e-testing = [
"browser-use>=0.1.40",
"playwright>=1.40.0",
"pytest-asyncio>=0.23.0",
]