-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (30 loc) · 1.23 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='py_ask_sdk_test',
version='1.3',
license='MIT',
description='A framework for testing Alexa Skills developed in Python with the alexa-skills-kit-sdk-for-python.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Jonathan Loos',
author_email='[email protected]',
url='https://github.com/BananaNosh/py_ask_sdk_test',
packages=find_packages('src'),
package_dir={'': 'src'},
download_url='https://github.com/BananaNosh/py_ask_sdk_test/archive/v1.3.tar.gz',
keywords=['alexa', 'skill', 'alexa skill', 'test', 'testing', 'framework',
'testing framework', 'ask_sdk', 'python', 'pytest'],
install_requires=[
'ask-sdk-core',
'responses',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)