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.

50 lines
1.3 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "iTi-Flask"
dynamic = ["version"]
description = 'iTi-Flask is a Flask-based framework for building web applications.'
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = []
authors = [{ name = "NoahLan", email = "6995syu@163.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = []
[project.urls]
Documentation = "https://github.com/NoahLan/iti-flask#readme"
Issues = "https://github.com/NoahLan/iti-flask/issues"
Source = "https://github.com/NoahLan/iti-flask"
[tool.hatch.version]
path = "iti/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ['iti']
[tool.coverage.run]
source_pkgs = ["iti", "tests"]
branch = true
parallel = true
omit = ["iti/__about__.py"]
[tool.coverage.paths]
iti = ["iti", "*/iti"]
tests = ["tests", "*/tests"]
[tool.coverage.report]
exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]