|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "xcoder" |
3 | 3 | version = "0.1.0" |
4 | 4 | description = "" |
5 | | -authors = ["Danila <crowo4ka@gmail.com>"] |
| 5 | +authors = [{ name = "Danila", email = "crowo4ka@gmail.com" }] |
| 6 | +requires-python = ">=3.11,<4" |
6 | 7 | readme = "README.md" |
| 8 | +classifiers = [ |
| 9 | + "Programming Language :: Python :: 3", |
| 10 | + "Programming Language :: Python :: 3.11", |
| 11 | + "Programming Language :: Python :: 3.12", |
| 12 | + "Programming Language :: Python :: 3.13", |
| 13 | + "Programming Language :: Python :: 3.14", |
| 14 | +] |
| 15 | +dependencies = [ |
| 16 | + "sc-compression==0.6.6", |
| 17 | + "colorama==0.4.6", |
| 18 | + "zstandard>=0.23.0,<0.24", |
| 19 | + "pillow~=11.2.1", |
| 20 | + "loguru==0.7.3", |
| 21 | +] |
7 | 22 |
|
8 | | -[tool.poetry.dependencies] |
9 | | -python = "^3.11" |
10 | | -sc-compression = "0.6.6" |
11 | | -colorama = "0.4.6" |
12 | | -pylzham = "^0.1.3" |
13 | | -zstandard = "^0.23.0" |
14 | | -pillow = "~11.2.1" |
15 | | -loguru = "0.7.3" |
| 23 | +[project.optional-dependencies] |
| 24 | +lzham = ["pylzham>=0.1.3,<0.2"] |
16 | 25 |
|
| 26 | +[dependency-groups] |
| 27 | +dev = [ |
| 28 | + "pyright>=1.1.376,<2", |
| 29 | + "black>=24.8.0,<25", |
| 30 | + "pre-commit>=3.8.0,<4", |
| 31 | + "ruff>=0.11.2,<0.12", |
| 32 | +] |
17 | 33 |
|
18 | | -[tool.poetry.group.dev.dependencies] |
19 | | -pyright = "^1.1.376" |
20 | | -black = "^24.8.0" |
21 | | -pre-commit = "^3.8.0" |
22 | | -ruff = "^0.11.2" |
| 34 | +[project.scripts] |
| 35 | +xcoder = "xcoder.__main__:main" |
23 | 36 |
|
24 | 37 | [build-system] |
25 | | -requires = ["poetry-core"] |
26 | | -build-backend = "poetry.core.masonry.api" |
| 38 | +requires = ["uv_build>=0.9.18,<0.10.0"] |
| 39 | +build-backend = "uv_build" |
| 40 | + |
| 41 | +[tool.uv] |
| 42 | + |
| 43 | +[tool.uv.build-backend] |
| 44 | +module-name = "xcoder" |
| 45 | + |
| 46 | +[tool.isort] |
| 47 | +profile = "black" |
| 48 | +force_sort_within_sections = true # Don't group `from` imports separately |
| 49 | +order_by_type = true # Order by CONSTANT, CamelCase, snake_case |
| 50 | + |
0 commit comments