-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 841 Bytes
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
[project]
name = "tinyurl"
version = "0.1.0"
description = ""
authors = [{ name = "Eric Hanchrow", email = "eric.hanchrow@gmail.com" }]
requires-python = ">=3.11"
dependencies = [
"django>=5.2,<5.3",
"requests>=2.32.4,<3",
"platformdirs>=4.2.2,<5",
"python-dotenv>=1.0.1,<2",
"whitenoise>=6.7.0,<7",
"daphne>=4.1.2,<5",
]
[dependency-groups]
dev = [
"boto3>=1.34.140,<2",
"django-debug-toolbar>=4.4.5,<5",
"django-extensions>=3.2.3,<4",
"pytest-django>=4.8.0,<5",
"tqdm>=4.66.4,<5",
"ipython>=9.3.0,<10",
]
[tool.uv]
package = false
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "project.dev_settings"
# -- recommended but optional:
python_files = ["tests.py", "test_*.py", "*_test.py", "testing/python/*.py"]