forked from UFAL-DSG/alex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 971 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
from setuptools import setup, find_packages
from os import path
long_description = open(path.join(path.dirname(__file__), 'README.rst')).read()
setup(
name='Alex Dialogue Systems Framework',
packages=find_packages(),
version='0.1',
test_suite="nose.collector",
author='UFAL-DSG https://github.com/UFAL-DSG/',
author_email='[email protected]',
url='https://github.com/DSG-UFAL/alex',
license='Apache, Version 2.0',
keywords='Alex Spoken Dialogue Systems Framework Public Transport Domain UFAL MFF',
description='Framework for developing dialogue systems',
long_description=long_description,
classifiers='''
Programming Language :: Python :: 2
License :: OSI Approved :: Apache License, Version 2
Operating System :: POSIX :: Linux
Intended Audiance :: Dialogue System scientist
Intended Audiance :: Students
Environment :: Console
'''.strip().splitlines(),
)