-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (50 loc) · 1.54 KB
/
setup.py
File metadata and controls
55 lines (50 loc) · 1.54 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
from codecs import open
from os import path
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='bothub',
version='0.1.30',
description=u'Build serverless chatbot on BotHub.Studio',
long_description=LONG_DESCRIPTION,
author='Jeongsoo Park',
author_email='jeongsoo.park@bothub.studio',
url='https://github.com/bothub-studio/bothub-sdk-python',
license="AGPL v3",
packages=find_packages(),
include_package_data=True,
install_requires=[
'requests',
'zmq',
'pyaml',
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'requests-mock',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'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',
)