-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 934 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from src import __version__
setup(name='kakaobot',
version=__version__,
packages=['kakaobot'],
package_dir={'kakaobot': 'src'},
install_requires=['aiohttp'],
license='GNU General Public License version 3.0',
author='bulzipke',
author_email='[email protected]',
url='https://github.com/bulzipke/kakaobot',
description='Python RESTFul server for Kakaotalk Bot API',
keywords=['kakaotalk', 'bot'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Libraries :: Python Modules'
])