-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
20 lines (20 loc) · 837 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name = 'cleverwrap',
packages = ['cleverwrap'],
license = 'MIT',
install_requires = ['requests'],
version = '0.2.3.2',
description = 'A wrapper for the official cleverbot.com API',
author = 'Andrew Edwards',
author_email = '[email protected]',
url = 'https://github.com/edwardslabs/cleverwrap.py',
download_url = 'https://github.com/edwardslabs/cleverwrap.py/tarball/0.2.3.2',
keywords = ['cleverbot', 'wrapper', 'clever'],
classifiers =[
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
],
)