-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 911 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
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "shinobi"
version = "0.1.3"
description = "Enhanced project initialization tool built on top of uv"
authors = [
{ name = "Ian Timmis" }
]
license = { text = "MIT" }
dependencies = [
"typer>=0.9.0",
"rich>=13.7.0",
"questionary>=2.0.1",
]
requires-python = ">=3.11"
[dependency-groups]
dev = [
"pytest>=7.0.0",
"ruff>=0.3.0",
"pre-commit>=3.0.0",
]
[project.scripts]
shinobi = "shinobi.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["shinobi"]
[tool.ruff]
line-length = 88
target-version = "py313"
fix = true
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
python_files = ["test_*.py"]
markers = ["integration: end-to-end tests that invoke uv init (slower)"]