forked from zhuifengshen/DingtalkChatbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1.05 KB
/
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
33
#!/usr/bin/env python
# _*_ coding:utf-8 _*_
# create time: 13/01/2018 20:41
import io
from setuptools import setup, find_packages
with io.open("README.rst", encoding='utf-8') as f:
long_description = f.read()
with io.open("requirements.txt", encoding='utf-8') as f:
install_requires = f.readlines()
setup(
name="DingtalkChatbot",
version="1.1.3",
packages=find_packages(),
description="DingtalkChatbot is a Python wrapper tool for dingtalk custom chatbot messages.",
long_description=long_description,
author="Devin Zhang",
author_email="[email protected]",
url="https://github.com/zhuifengshen/DingtalkChatbot",
license='MIT',
keywords='dingtalk dingding chatbot robot bot',
install_requires=install_requires,
setup_requires=['setuptools'],
classifiers=[
"Development Status :: 5 - Production/Stable",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)