You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
628 B
TOML
29 lines
628 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "iti-flask-cli"
|
|
version = "0.1.0"
|
|
description = "Unified CLI for iTi-Flask framework and generated business projects."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
authors = [{ name = "NoahLan", email = "6995syu@163.com" }]
|
|
keywords = ["iti-flask", "fastapi", "cli"]
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
iticli = "iticli.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["iticli*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|