-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (47 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "graycode-skills"
version = "0.0.1"
description = "Community skill packages for Graycode"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0",
"rich>=13.0",
"cryptography>=42.0",
]
[project.optional-dependencies]
# Reproducible dev/test toolchain. Install with: pip install -e '.[dev]'
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.5",
"pip-audit>=2.7",
]
[tool.ruff]
target-version = "py39"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM"]
ignore = [
"E402", "E501", "E722", "E741",
"F401",
"B005", "B007", "B018",
"N802", "N806", "N813", "N815", "N817",
"SIM102", "SIM115", "SIM117",
]
[tool.hatch.build.targets.wheel]
packages = ["tools"]
[tool.hatch.build.targets.sdist]
include = [
"tools",
"categories",
"tests",
"pyproject.toml",
"README.md",
"LICENSE",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["tools"]