-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (55 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (55 loc) · 1.96 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
[project]
authors = [{ name = "Harshal Laheri", email = "harshal@harshallaheri.me" }]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
]
dependencies = ["questionary>=2.1.1", "rich>=14.2.0", "jinja2>=3.1.6", "msgspec>=0.20.0"]
description = "Interactive CLI to scaffold fullstack projects with modular choices"
keywords = ["litestar", "scaffolding", "cli", "fullstack", "template", "generator"]
license = "MIT"
name = "litestar-start"
readme = "README.md"
requires-python = ">=3.13"
version = "0.1.0b3"
[project.scripts]
litestar-start = "src.cli:main"
[project.urls]
Documentation = "https://github.com/Harshal6927/litestar-start#readme"
Issues = "https://github.com/Harshal6927/litestar-start/issues"
Source = "https://github.com/Harshal6927/litestar-start"
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build.targets.sdist]
include = ["src"]
[tool.ruff]
fix = true
format.preview = true
line-length = 120
lint.fixable = ["ALL"]
lint.ignore = [
"CPY001", # Missing copyright notice
"D100", # Undocumented public module
"D104", # Undocumented public package
"PLC0415", # Import outside top level
"PLR0911", # Too many return statements
"PLW0717", # Try clause contains too many statements
"S101", # Use of assert detected
"SLF001", # Private member accessed
"RUF067", # `__init__` module should only contain docstrings
"S404", # Suspicious subprocess import
]
lint.preview = true
lint.pydocstyle.convention = "google"
lint.select = ["ALL"]
target-version = "py313"
[dependency-groups]
dev = ["pre-commit>=4.5.1", "pytest>=9.0.2", "pytest-mock>=3.15.1", "ruff>=0.14.11", "ty>=0.0.11"]