-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
28 lines (26 loc) · 945 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
setup(
name='fourlang',
version='1.0',
description='mapping natural language to concept networks for computational semantics', # nopep8
url='https://github.com/kornai/pymachine',
author='Gabor Recski',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='semantics nlp',
package_dir={'': 'src'},
packages=find_packages("src"),
include_package_data=True,
dependency_links=[
"https://github.com/kornai/pymachine/tarball/master#egg=pymachine"],
install_requires=[
"nltk", "pymachine", "requests", "stemming", "unidecode", "pyzmq",
"graphviz", "scipy"],
)