-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.03 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
37
38
39
[project]
authors = [{ name = "Bean", email = "bean@yuanfen.net" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
'Programming Language :: Python',
]
dependencies = [
"chardet (>=5.2.0,<6.0.0)",
"pydantic (>=2.10.4,<3.0.0)",
"pytz (>=2024.2,<2025.0)",
"pyyaml (>=6.0.2,<7.0.0)",
"redis (>=5.2.1,<6.0.0)",
"requests (>=2.32.3,<3.0.0)",
"watchdog (>=6.0.0,<7.0.0)",
]
description = "Yuanfen Python Library"
license = { text = "MIT" }
name = "yuanfen"
readme = "README.md"
requires-python = ">=3.9"
version = "0.0.0"
[project.urls]
repository = "https://github.com/YuanfenNet/yf-lib-py"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.0.0,<3.0.0"]
[tool.black]
line-length = 180
[tool.isort]
profile = "black"
[tool.poetry]
packages = [{ include = "yuanfen", from = "src" }]