25 lines
553 B
TOML
25 lines
553 B
TOML
|
|
[project]
|
|||
|
|
name = "xian-favor"
|
|||
|
|
version = "1.0.0"
|
|||
|
|
description = "Xian Favor - 收藏关注系统,支持命令行、API、Web多种操作模式"
|
|||
|
|
readme = "README.md"
|
|||
|
|
requires-python = ">=3.8"
|
|||
|
|
license = {text = "MIT"}
|
|||
|
|
authors = [
|
|||
|
|
{name = "Xian", email = "wlq@tphai.com"}
|
|||
|
|
]
|
|||
|
|
dependencies = [
|
|||
|
|
"flask>=2.3.0",
|
|||
|
|
"flask-cors>=4.0.0",
|
|||
|
|
]
|
|||
|
|
|
|||
|
|
[project.scripts]
|
|||
|
|
xian_favor = "xian_favor.cli:main"
|
|||
|
|
|
|||
|
|
[build-system]
|
|||
|
|
requires = ["setuptools>=61.0"]
|
|||
|
|
build-backend = "setuptools.build_meta"
|
|||
|
|
|
|||
|
|
[tool.setuptools.packages.find]
|
|||
|
|
where = ["."]
|
|||
|
|
include = ["xian_favor*"]
|