-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (30 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from distutils.core import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='Dialogs',
version='1.0',
license='BSD',
description='Handles natural language inputs and outputs on cognitive robots',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
author='Séverin Lemaignan',
author_email='[email protected]',
url='https://github.com/severin-lemaignan/dialogs',
requires=['pykb'],
package_dir = {'': 'src'},
packages=['dialogs', 'dialogs.interpretation', 'dialogs.parsing', 'dialogs.helpers', 'dialogs.verbalization'],
scripts=['scripts/dialogs', 'scripts/dialogs_test'],
data_files=[('share/dialogs', ['share/dialogs/' + f for f in os.listdir('share/dialogs')]),
('share/doc/dialogs', ['AUTHORS', 'LICENSE', 'TODO', 'README.md']),
('share/doc/dialogs', ['doc/' + f for f in os.listdir('doc/') if f != "demo"]),
('share/examples/dialogs', ['share/examples/dialogs/' + f for f in os.listdir('share/examples/dialogs')])]
)