31 lines
870 B
Python
31 lines
870 B
Python
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", "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",
|
|
},
|
|
)
|