-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 950 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
from setuptools import setup, find_packages
install_requires = [
'Flask==1.0.2'
]
setup(
name = 'kakaobot.py',
version = '1.1',
description = 'API wrapper for Kakaotalk written in Python.',
author = 'Katinor',
author_email = 'katinor@4ears.net',
license = 'MIT',
packages = find_packages(),
url = 'https://github.com/Katinor/kakaobot.py',
download_url = 'https://github.com/Katinor/kakaobot.py',
install_requires= install_requires,
keywords = ['kakaotalk','chatbot','api'],
python_requires = '>=3',
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Topic :: Communications :: Chat',
'Framework :: Flask',
'Natural Language :: Korean',
'Programming Language :: Python :: 3 :: Only'
],
long_description = open("RM_pypi.md","r").read(),
long_description_content_type ="text/markdown",
)