-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.37 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
[project]
name = "sw-metadata-bot"
version = "0.1.0"
description = "RSMetaCheck bot for pushing issues with existing repository metadata"
readme = "README.md"
requires-python = ">=3.11,<3.13"
authors = [
{name = "Tom François", email = "tom.francois@lapp.in2p3.fr"}
]
dependencies = [
"click>=8.3.1",
"metacheck>=0.2.0",
"requests>=2.32.5",
]
keywords = ["codemeta", "metadata", "bot", "quality software"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
sw-metadata-bot = "sw_metadata_bot.main:main"
[tool.uv]
package = true
[tool.setuptools]
package-dir = {"" = "src"}
packages = { find = { where = ["src"] } }
[dependency-groups]
dev = [
"bandit>=1.9.3",
"pre-commit>=4.5.1",
"ruff>=0.14.13",
"ty>=0.0.12",
]
test = [
"pytest",
"pytest-cov",
"coverage-badge",
]
docs = [
"furo>=2025.12.19",
"sphinx",
]
[tool.uv.sources]
metacheck = { git = "https://github.com/SoftwareUnderstanding/RsMetaCheck"}
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.bandit]
exclude_dirs = ["tests",".venv", ".ruff-cache"]
tests = ["B201", "B301"]
skips = ["B101", "B601"]