-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
setup.py
53 lines (50 loc) · 1.61 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
#!/usr/bin/env python
"""
Setup file for chatterbot-corpus.
"""
from setuptools import setup
# Dynamically retrieve the version information from the chatterbot module
CORPUS = __import__('chatterbot_corpus')
VERSION = CORPUS.__version__
AUTHOR = CORPUS.__author__
AUTHOR_EMAIL = CORPUS.__email__
URL = CORPUS.__url__
DESCRIPTION = CORPUS.__doc__
setup(
name='chatterbot-corpus',
version=VERSION,
url=URL,
download_url='{}/tarball/{}'.format(URL, VERSION),
setup_requires=['setuptools-markdown'],
long_description_markdown_filename='readme.md',
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
packages=[
'chatterbot_corpus',
],
package_dir={'chatterbot_corpus': 'chatterbot_corpus'},
include_package_data=True,
license='BSD',
zip_safe=False,
platforms=['any'],
keywords=['chatterbot', 'dialog', 'language', 'corpus'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Environment :: Console',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Chat',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
test_suite='tests'
)