-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
127 lines (115 loc) · 2.77 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
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
123
124
125
126
127
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "vgarchive.run"
version = "0.1.0"
description = "Video Game Marathon VOD Archive"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "Pyrox/dish", email = "pyrox@pyrox.dev" }]
maintainers = [{ name = "Pyrox/dish", email = "pyrox@pyrox.dev" }]
keywords = ["videogames", "archive", "vods", "marathon", "charity"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Django :: 5.1",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Multimedia :: Video :: Display",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Mirroring",
"Typing :: Typed",
]
dependencies = [
"django-compression-middleware~=0.5.0",
"django-compressor>=4.5",
"django-cotton~=1.5.0",
"django-filter~=24.1",
"django-icons-bootstrap-icons~=1.0.0",
"django-icons~=24.4",
"django-imagekit~=5.0.0",
"django-tables2~=2.7.0",
"django-tailwind~=3.8.0",
"django~=5.1",
"docutils~=0.21.0",
"pillow~=11.0.0",
"requests~=2.32.3",
]
[project.urls]
Homepage = "https://github.com/pyrox0/vgarchive"
Documentation = "https://github.com/pyrox0/vgarchive"
Repository = "https://github.com/pyrox0/vgarchive"
Issues = "https://github.com/pyrox0/vgarchive/issues"
[dependency-groups]
dev = [
"hypercorn[uvloop]>=0.17.0",
"django-browser-reload~=1.17.0",
"django-admin-shell>=2.0.0",
"django-debug-toolbar>=4.4.6",
"django-debug-toolbar-template-profiler>=2.1.0",
]
[tool.djlint]
ignore = "H006"
indent = 2
profile = "django"
use_gitignore = true
[tool.pyright]
venvPath = "."
venv = ".venv"
exclude = ["**/migrations/*.py", "manage.py", "scripts/*.py"]
[tool.ruff]
indent-width = 4
[tool.ruff.format]
exclude = ["**/migrations/*.py", "manage.py", "scripts/*.py"]
line-ending = "lf"
indent-style = "space"
[tool.ruff.lint]
select = [
"A",
"ANN",
"ARG",
"COM",
"DJ",
"DTZ",
"ERA",
"E4",
"E7",
"E9",
"F",
"FURB",
"FLY",
"INP",
"LOG",
"PERF",
"PIE",
"PTH",
"Q",
"RET",
"RUF",
"S",
"SIM",
"T20",
"TCH",
"TID",
"UP",
]
ignore = ["ANN003", "COM812"]
[tool.ruff.lint.per-file-ignores]
"vgarchive/settings/*.py" = ["ALL"]
"vgarchive/**/migrations/*.py" = ["ALL"]
"manage.py" = ["ALL"]
"scripts/*.py" = ["ALL"]
[tool.setuptools]
packages = ["vgarchive"]
[tool.uv]
compile-bytecode = true
package = false
[tool.uv.sources]