-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
21 lines (20 loc) · 934 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name = 'rst2dep',
packages = find_packages(),
version = '1.3.0.1',
description = 'RST (Rhetorical Structure Theory) constituent and dependency converter for discourse parses',
author = 'Amir Zeldes',
author_email = 'amir.zeldes@georgetown.edu',
package_data = {'':['README.md','LICENSE','requirements.txt'],'rst2dep':['*']},
install_requires=[],
url = 'https://github.com/amir-zeldes/rst2dep',
license='Apache License, Version 2.0',
download_url = 'https://github.com/amir-zeldes/rst2dep/releases/tag/v1.3.0.1',
keywords = ['NLP', 'RST', 'discourse', 'dependencies', 'converter', 'conversion','Rhetorical Structure Theory','parsing'],
classifiers = ['Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent'],
)