-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (30 loc) · 1 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "alist-sdk"
authors = [{ name = "LeeCQ", email = "[email protected]" }]
description = "Alist API 简单封装."
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["httpx>=0.25.1", "pydantic>=2.5.1", "typer>=0.12.5"]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pydantic :: 2",
"Natural Language :: Chinese (Simplified)",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/lee-cq/alist-sdk"
Issues = "https://github.com/lee-cq/alist-sdk/issues"
[project.scripts]
alist-cli = "alist_sdk.cmd.app:app"
alist-fs = "alist_sdk.cmd.fs:fs"
[tool.setuptools]
packages = ["alist_sdk", "alist_sdk.tools", "alist_sdk.cmd"]
[tool.setuptools.dynamic]
version = { attr = "alist_sdk.version.__version__" }