forked from johnwheeler/flask-ask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.17 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
"""
Flask-Ask
-------------
Easy Alexa Skills Kit integration for Flask
"""
from setuptools import setup
from pip.req import parse_requirements
setup(
name='Flask-Ask',
version='0.9.3',
url='https://github.com/johnwheeler/flask-ask',
license='Apache 2.0',
author='John Wheeler',
author_email='john@johnwheeler.org',
description='Rapid Alexa Skills Kit Development for Amazon Echo Devices in Python',
long_description=__doc__,
packages=['flask_ask'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
str(item.req) for item in
parse_requirements('requirements.txt', session=False)
],
test_requires=[
'mock',
'requests'
],
test_suite='tests',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Framework :: Flask',
'Programming Language :: Python',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)