-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
82 lines (73 loc) · 2.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "uv-forger"
version = "0.4.0"
description = "A desktop app for forging Python projects with UV — templates, frameworks, and smart scaffolding"
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [{name = "Tim Lang"}]
keywords = ["uv", "python", "project-generator", "scaffolding", "flet", "gui",]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"fce-enhanced>=0.1.5",
"flet>=0.80.5",
"flet-code-editor>=0.82.2",
"httpx>=0.28.1",
"loguru>=0.7.3",
"platformdirs>=4.9.2",
]
[project.urls]
Homepage = "https://github.com/oktl/uv-forger"
Repository = "https://github.com/oktl/uv-forger"
Documentation = "https://oktl.github.io/uv-forger/"
Issues = "https://github.com/oktl/uv-forger/issues"
Changelog = "https://github.com/oktl/uv-forger/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["uv_forger"]
[dependency-groups]
dev = [
"mkdocs-glightbox>=0.5.2",
"mkdocs-material>=9.7.5",
"pygments>=2.19,<2.20",
"pre-commit>=4.5.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"ruff>=0.15.1",
]
[project.scripts]
uv-forger = "uv_forger.main:run"
[tool.pytest.ini_options]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short --strict-markers -ra --cov=uv_forger --cov-report=term-missing --cov-report=html"
testpaths = ["tests"]
markers = [
"asyncio: marks tests as async (requires pytest-asyncio)",
"slow: marks tests as slow running",
"integration: marks tests as integration tests",
]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B", "SIM"]
ignore = [
"E501", # line too long (handled by formatter)
"SIM108", # ternary operator (readability preference)
]