-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (54 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "lark-oapi-compact"
version = "0.1.3"
description = "Lark OpenAPI SDK for Python"
authors = [{ name = "L8ng", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
keywords = [
"feishu",
"lark",
]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
# Upstream/v2_main https://github.com/larksuite/oapi-sdk-python
"lark-oapi==1.3.4",
# ---
"pydantic==1.10.18",
# Upstream/main old sdkhttps://github.com/larksuite/oapi-sdk-python
"attrs>=23.2.0",
"pycryptodome>=3.20.0",
"requests>=2.31.0",
"typing_extensions",
]
[project.urls]
Repository = "https://github.com/StrayDragon/oapi-sdk-python-compact"
Documentation = "https://github.com/StrayDragon/oapi-sdk-python-compact/blob/main/README.md"
Changelog = "https://github.com/StrayDragon/oapi-sdk-python-compact/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ipython>=7.34.0",
"pre-commit>=2.21.0",
"pytest-cov>=4.1.0",
"pytest>=7.4.4",
"ruff>=0.6.8",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]