-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.19 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
[project]
name = "django-unicorn.com"
version = "0.1.0"
description = "Documentation of django-unicorn"
authors = [
{ name = "Adam Hill", email = "adamghill@gmail.com" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"django>=3.1.0",
"python-dotenv>=0.14.0",
"gunicorn>=20.0.4",
"whitenoise>=5.1.0",
"django-compressor>=2.4",
"django-unicorn>=0.65.2",
"django-cache-memoize>=0.1.7",
"django-redis>=4.12.1",
"httpx>=0.14.2",
"sentry-sdk>=0",
"django-sphinx-docs>=0.4.1",
"django-fbv<1",
]
[dependency-groups]
dev = [
"Sphinx",
"linkify-it-py",
"myst-parser",
"furo",
"sphinx-copybutton",
"sphinx-autobuild",
"rst2pdf",
"sphinx-autoapi",
"sphinxext-opengraph",
"toml",
"sphinx-design",
"ruff",
"ty",
"pytest",
"pytest-django",
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = []
[tool.ty]
type_checker = "pyright"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["project", "unicorn", "www"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"