-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
57 lines (51 loc) · 1.74 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
#!/usr/bin/env python
"""
Django Dialogflow setup file.
"""
from setuptools import setup
# Dynamically retrieve the version information from the django_dialogflow module
DJANGO_DIALOGFLOW = __import__('django_dialogflow')
VERSION = DJANGO_DIALOGFLOW.__version__
AUTHOR = DJANGO_DIALOGFLOW.__author__
AUTHOR_EMAIL = DJANGO_DIALOGFLOW.__email__
URL = DJANGO_DIALOGFLOW.__url__
DESCRIPTION = 'Django Dialogflow chat agent'
LONG_DESCRIPTION = 'Django Dialogflow chat agent'
with open('requirements.txt') as requirements:
REQUIREMENTS = requirements.readlines()
setup(
name='django-dialogflow',
version=VERSION,
url=URL,
download_url='{}/tarball/{}'.format(URL, VERSION),
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
packages=[
'django_dialogflow',
],
package_dir={'django_dialogflow': 'django_dialogflow'},
include_package_data=True,
install_requires=REQUIREMENTS,
license='BSD',
zip_safe=True,
platforms=['any'],
keywords=['Django', 'Dialogflow', 'api.ai', 'chat', 'bot'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT 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 :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)