-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
30 lines (26 loc) · 887 Bytes
/
setup.py
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
from distutils.core import setup
from setuptools import find_packages
from lark_oapi.core.const import VERSION, UTF_8
with open("README.md", mode="r", encoding=UTF_8) as f:
readme = f.read()
setup(
name="lark-oapi",
version=VERSION,
description="Lark OpenAPI SDK for Python",
long_description=readme,
long_description_content_type="text/markdown",
author="Wenbo Mao",
author_email="maowenbo@bytedance.com",
url="https://github.com/larksuite/oapi-sdk-python",
packages=find_packages(),
install_requires=["requests", "requests_toolbelt", "pycryptodome", "websockets", "protobuf>3,<4", "httpx"],
extras_require={
"flask": ["Flask>=2"]
},
python_requires=">=3.7",
keywords=["Lark", "OpenAPI"],
include_package_data=True,
project_urls={
"Source": "https://github.com/larksuite/oapi-sdk-python",
},
)