-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 980 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 980 Bytes
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
34
35
# !/usr/bin/python
from setuptools import setup, find_packages
import kakaoplus
setup_requires = []
install_requires = [
]
dependency_links = [
]
setup(
name='kakaoplus',
version=kakaoplus.__version__,
url='https://github.com/HwangWonYo/kakaoplus',
license='MIT License',
description='A Python Library For Kakao Plus Friend Auto Reply API',
author='wonyoHwang',
author_email='hollal0726@gmail.com',
packages=find_packages(exclude=['tests']),
# include_package_data=True,
# install_requires=install_requires,
# setup_requires=setup_requires,
# dependency_links=dependency_links,
keywords=['kakao', 'plus friend', 'chatbot'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
]
)