-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (28 loc) · 899 Bytes
/
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
from setuptools import find_packages, setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name = 'pylexa',
version = '1.0.0',
author = 'Patrick Smith',
author_email = '[email protected]',
description = ('A library to ease creation of an Alexa Skills Kit'),
keywords = 'amazon alexa ask',
url = 'http://www.github.com/patricksmith/pylexa',
packages=find_packages(),
install_requires=[
'flask', 'python-dateutil', 'pycrypto', 'pyopenssl', 'pyyaml', 'requests'],
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
],
entry_points={
'console_scripts': [
'generate-alexa-conf = pylexa.tools.parse_conf:main',
]
},
)