-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
53 lines (47 loc) · 1.37 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
with open('HISTORY.md') as history_file:
history = history_file.read()
try:
import pypandoc
readme = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
readme = ''
requirements = [
'transitions==0.5.0',
'voicelabs==0.0.10'
]
test_requirements = [
'elasticsearch==5.1.0',
'elasticsearch-dsl==5.1.0'
]
setup(
name='alexafsm',
version='0.1.11',
description="Finite-state machine library for building complex Alexa conversations",
long_description=readme + '\n\n' + history,
author="Allen AI",
author_email='[email protected]',
url='https://github.com/allenai/alexafsm',
packages=[
'alexafsm',
],
package_dir={'alexafsm':
'alexafsm'},
include_package_data=True,
install_requires=requirements,
license="Apache Software License 2.0",
zip_safe=False,
keywords='alexafsm, alexa skill, finite-state machine, fsm, dialog, dialog state management',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
tests_require=test_requirements
)