-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 877 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 877 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "scrolls"
version = "0.1.0"
description = "A collection of skills for working with domain names, designed for use with AI agents"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Zac Roach" }]
[tool.hatch.build.targets.wheel]
packages = ["scrolls"]
[tool.hatch.build.targets.wheel.force-include]
"scrolls/seer" = "scrolls/seer"
"scrolls/tome" = "scrolls/tome"
"scrolls/other" = "scrolls/other"
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"RUF", # ruff-specific
]
[tool.ruff.lint.isort]
known-first-party = ["scrolls"]