-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 1.09 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
[project]
name = "unityscraper"
version = "1.2.0b1"
description = "Xbox 360 library, knowledge, preservation, and backup manager"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GPL-3.0-only" }
authors = [{ name = "UnityScraper contributors" }]
dependencies = [
"requests>=2.31.0",
"urllib3>=2.0.0",
"Pillow>=10.0.0",
"Flask>=2.3.0",
"flask-cors>=4.0.0",
"packaging>=23.0",
]
[project.urls]
Homepage = "https://github.com/TrapEmAll/UnityScraper"
Issues = "https://github.com/TrapEmAll/UnityScraper/issues"
Releases = "https://github.com/TrapEmAll/UnityScraper/releases"
[project.scripts]
unityscraper = "unityscraper.app.desktop.entrypoint:main"
unityscraper-cli = "unityscraper.app.cli.entrypoint:main"
[tool.pytest.ini_options]
testpaths = ["tests.py"]
addopts = "-ra"
[tool.ruff]
target-version = "py310"
line-length = 100
extend-exclude = ["build", "dist", "UnityScraperData"]
[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
warn_unused_configs = true
exclude = "^(build|dist|UnityScraperData)/"