-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 911 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 911 Bytes
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
41
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openlist"
version = "0.1.1-beta2"
description = "A Python client for OpenList API"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "HisAtri", email = "sato@xms.mx" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"fsspec>=2025.10.0",
"httpx>=0.28.1",
"prompt-toolkit>=3.0.52",
"pydantic>=2.12.5",
"pyjwt>=2.10.1",
"pyotp>=2.9.0",
"rich>=14.2.0",
"typer>=0.20.0",
]
[project.urls]
"Homepage" = "https://github.com/HisAtri/openlistapi"
[dependency-groups]
dev = [
"build>=1.3.0",
"twine>=6.2.0",
]
[tool.setuptools.packages.find]
include = ["openlist*"]
exclude = ["tests*", "test*", "*_test.py", "main_temp_test.py"]