forked from ConnectAI-E/Feishu-Webhook-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 924 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
31
32
from setuptools import setup
from setuptools import find_namespace_packages
VERSION = '0.0.2'
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setup(
name='ca-lark-websocket', # package name
version=VERSION, # package version
description='lark(feishu) client', # package description
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
project_urls={
"Documentation": "https://www.connectai-e.com",
"Code": "http://github.com/connectAI-E/connectai",
"Issue tracker": "http://github.com/connectAI-E/connectai/issues",
},
author="[email protected]",
license="MIT",
keywords=["Feishu", "Lark", "Webhook", "Websocket", "Bot"],
packages=find_namespace_packages(),
zip_safe=False,
install_requires=[
"ca-lark-sdk",
"websocket-client",
"httpx"
],
python_requires=">=3.8"
)