forked from volcengine/volc-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 692 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 692 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
# coding:utf-8
import sys
from setuptools import setup, find_packages
from volcengine import VERSION
install_requires = [
"requests>=2.25.1",
"retry==0.9.2",
"pytz==2020.5",
"pycryptodome==3.9.9",
"protobuf>=3.18.3",
"google>=3.0.0",
"six>=1.0",
"tinyec==0.4.0",
]
setup(
name="volcengine",
version=VERSION,
keywords=("pip", "volcengine", "volc-sdk-python"),
description="The Volcengine SDK for Python",
license="MIT License",
url="https://github.com/Volcengine/volc-sdk-python",
author="Volcengine SDK",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=install_requires
)