Skip to content

Commit 8e0f736

Browse files
Merge 'dev/lsx/pyproject' into 'master'
feat(build): add pyproject See merge request: !816
2 parents a06fa9b + 8c92fce commit 8e0f736

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

pyproject.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[project]
2+
name = "volcengine-python-sdk"
3+
version = "4.0.20"
4+
authors = [
5+
{name = "volc-engine", email = "[email protected]"},
6+
]
7+
description = "Volcengine SDK for Python"
8+
readme = "README.md"
9+
requires-python = ">=2.7"
10+
keywords = ["volcengine", "sdk"]
11+
license = "Apache-2.0"
12+
dependencies = ["certifi>=2017.4.17", "python-dateutil>=2.1", "six>=1.16", "urllib3>=1.26.5"]
13+
14+
[project.optional-dependencies]
15+
ark = [
16+
"pydantic>=1.9.0, <3",
17+
"httpx>=0.23.0, <1",
18+
"anyio>=3.5.0, <5",
19+
"cached-property; python_version < '3.8'",
20+
"cryptography>=44.0.1",
21+
]
22+
23+
[build-system]
24+
requires = ["setuptools>=61.0"]
25+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

0 commit comments

Comments
 (0)