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
992 B
TOML
50 lines
992 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "iti-system"
|
|
version = "0.1.1"
|
|
description = "Reusable system-domain package for iTi-Flask applications."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = "MIT"
|
|
authors = [{ name = "NoahLan", email = "6995syu@163.com" }]
|
|
dependencies = [
|
|
"iti-flask @ git+https://git.noahlan.cn/iti-framework/iTi-Flask.git@v0.1.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"mypy>=1.0.0",
|
|
"pytest>=7.0.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["iti_system*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
iti_system = [
|
|
"migrations/versions/*.py",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
pythonpath = ["."]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
ignore_missing_imports = true
|
|
warn_unused_configs = true
|
|
files = [
|
|
"iti_system/module.py",
|
|
"iti_system/cli.py",
|
|
]
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = [
|
|
"iti_system.models.*",
|
|
"iti_system.routes.*",
|
|
]
|
|
follow_imports = "skip"
|