-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.47 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agents-smith"
version = "1.0.0"
description = "Clone AI agent configurations into any project"
readme = "README.md"
requires-python = ">=3.13"
license = { file = "LICENSE" }
authors = [
{ name = "eol", email = "nullhack@users.noreply.github.com" }
]
dependencies = [
"requests>=2.32",
]
[project.scripts]
smith = "smith.__main__:main"
[project.urls]
Repository = "https://github.com/nullhack/agents-smith"
[project.optional-dependencies]
dev = [
"pytest>=9.0.3",
"pytest-cov>=6.1.1",
"ruff>=0.11.5",
"taskipy>=1.14.1",
"pyright>=1.1.400",
]
[tool.setuptools.packages.find]
include = ["smith*"]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
preview = true
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["S101"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "--tb=short -q"
[tool.taskipy.tasks]
lint = "ruff check . && ruff format --check ."
ruff-check = "ruff check ."
ruff-format-check = "ruff format --check ."
static-check = "python -m pyright smith/"
test = "python -m pytest tests/ --tb=short -q"
test-fast = "python -m pytest tests/ --tb=short -q -m 'not slow'"
release-check = "python -m pytest tests/ --tb=short -q && ruff check . && ruff format --check ."
doc-build = "python -c \"print('doc-build placeholder')\""
doc-publish = "python -c \"print('doc-publish placeholder')\""