-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (71 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
75 lines (71 loc) · 1.52 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
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
build-backend = "hatchling.build"
requires = [ "hatch-vcs", "hatchling" ]
[project]
name = "ecosystem-scripts"
description = "scripts for ecosystem package data"
readme = "../README.md"
license = "GPL-3.0"
authors = [
{ name = "Gregor Sturm", email = "gregor.sturm@scverse.org" },
{ name = "Philipp A.", email = "flying-sheep@web.de" },
]
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = [ "version" ]
dependencies = [
"httpx",
"httpx-limiter[aiolimiter]",
"httpx-retries",
"jsonschema>=4.25.1",
"pillow>=12",
"pygithub",
"pyyaml",
"rich",
]
urls.Documentation = "https://github.com/scverse/ecosystem-packages#readme"
urls.Issues = "https://github.com/scverse/ecosystem-packages/issues"
urls.Source = "https://github.com/scverse/ecosystem-packages"
scripts.register-template-repos = "ecosystem_scripts.template_repo_registry:main"
scripts.validate-registry = "ecosystem_scripts.validate_registry:main"
[tool.hatch]
version.source = "vcs"
version.fallback-version = "0.0"
[tool.ruff]
line-length = 120
lint.select = [
"A",
"ARG",
"B",
"C",
"DTZ",
"E",
"EM",
"F",
"FBT",
"I",
"ICN",
"ISC",
"N",
"PLC",
"PLE",
"PLR",
"PLW",
"RUF",
"S",
"T",
"TC",
"TID",
"UP",
"W",
"YTT",
]
lint.ignore = []
[tool.mypy]
strict = true
explicit_package_bases = true
mypy_path = [ "$MYPY_CONFIG_FILE_DIR/typings", "$MYPY_CONFIG_FILE_DIR/src" ]