-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.11 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
[project]
name = "xcoder"
version = "0.1.0"
description = ""
authors = [{ name = "Danila", email = "crowo4ka@gmail.com" }]
requires-python = ">=3.11,<4"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"sc-compression==0.6.6",
"colorama==0.4.6",
"zstandard>=0.23.0,<0.24",
"pillow~=11.2.1",
"loguru==0.7.3",
]
[project.optional-dependencies]
lzham = ["pylzham>=0.1.3,<0.2"]
[dependency-groups]
dev = [
"pyright>=1.1.376,<2",
"black>=24.8.0,<27",
"pre-commit>=3.8.0,<5",
"ruff>=0.11.2,<0.16",
]
[project.scripts]
xcoder = "xcoder.__main__:main"
[build-system]
requires = ["uv_build>=0.9.18,<0.11.0"]
build-backend = "uv_build"
[tool.uv]
[tool.uv.build-backend]
module-name = "xcoder"
[tool.isort]
profile = "black"
force_sort_within_sections = true # Don't group `from` imports separately
order_by_type = true # Order by CONSTANT, CamelCase, snake_case