-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
40 lines (35 loc) · 953 Bytes
/
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
37
38
39
40
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "alist-sync"
authors = [{ name = "LeeCQ", email = "[email protected]" }]
description = "Alist多驱动同步工具."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"alist-sdk",
"typer",
"rich",
"async-lru",
"pydantic",
"pyyaml",
"pymongo"
]
dynamic = ["version"]
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Framework :: Pydantic :: 2",
"Natural Language :: Chinese (Simplified)",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/lee-cq/alist-sync"
Issues = "https://github.com/lee-cq/alist-sync/issues"
[tool.setuptools]
packages = ["alist_sync"]
[tool.setuptools.dynamic]
version = { attr = "alist_sync.version.__version__" }