-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (24 loc) · 893 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
from setuptools import setup, find_packages
setup(
name='pymachine',
version='0.2',
description='Eilenberg-machines for computational semantics',
url='https://github.com/kornai/pymachine',
author='Gabor Recski, Attila Zseder, David Nemeskey',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'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"),
dependency_links=[
"https://github.com/zseder/hunmisc/tarball/master#egg=hunmisc"],
install_requires=["hunmisc", "pyparsing", "stemming", "networkx"],
)