-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
72 lines (67 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
import codecs
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
from os import path
HERE = path.abspath(path.dirname(__file__))
with codecs.open(path.join(HERE, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='bothub-cli',
version='0.1.20',
description='A CLI tool for bothub.studio service',
long_description=LONG_DESCRIPTION,
author='Jeongsoo Park',
author_email='jeongsoo.park@bothub.studio',
url='https://github.com/bothub-studio/bothub-cli',
license="Apache 2.0",
packages=[
'bothub_cli'
],
include_package_data=True,
install_requires=[
'six',
'click',
'requests',
'pyyaml',
'pyjwt',
'terminaltables',
'prompt-toolkit>=2.0',
'bothub>=0.1.18',
'pathspec',
'dialogflow',
'ruamel.yaml',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'requests-mock',
],
dependency_links=[
],
entry_points={
'console_scripts': [
'bothub=bothub_cli.main:main',
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Utilities'
],
keywords='bothub serverless chatbot framework cli',
)