forked from dmcc/PyStanfordDependencies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 878 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='PyStanfordDependencies',
version='0.1.7',
description='Python interface for converting Penn Treebank trees to '
'Stanford Dependencies',
long_description=open('README.rst').read(),
author='David McClosky',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
url='http://github.com/dmcc/PyStanfordDependencies',
license='Apache 2.0',
platforms=['POSIX'],
packages=['StanfordDependencies'])