forked from singnet/language-learning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.59 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
from setuptools import setup
setup(name='opencog-ull',
version='1.0.0',
description='Unsupervised Language Learning Toolkit',
author='SingularityNET',
url='http://github.com/singnet/language-learning',
namespace_packages=['ull'],
packages=['ull.grammartest', 'ull.common', 'ull.grammar_tester', 'ull.grammar_learner', 'ull.text_parser',
'ull.parse_evaluator', 'ull.pipeline', 'ull.dash_board'],
package_dir={'ull.common': 'src/common', 'ull.grammartest': 'src/grammar_tester',
'ull.grammar_tester': 'src/grammar_tester', 'ull.grammar_learner': 'src/grammar_learner',
'ull.text_parser': 'src/text_parser', 'ull.parse_evaluator': 'src/parse_evaluator',
'ull.pipeline': 'src/pipeline', 'ull.dash_board': 'src/dash_board'},
scripts=['src/cli_scripts/grammar-tester', 'src/cli_scripts/parse-evaluator', 'src/cli_scripts/ull-cli'],
platform='any',
license='MIT',
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Bug Tracking',
],
long_description=open('README.md').read()
)