-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
26 lines (25 loc) · 884 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
import sys
from distutils.core import setup
setup(
name='corpus-downloader',
packages = ['corpus'], # this must be the same as the name above
py_modules=['corpus'],
version='0.1.11',
description = 'A downloader for textual corpora, for use in digital humanities, corpus linguistics, and natural language processing.',
author = 'Jonathan Reeve',
author_email = '[email protected]',
url = 'https://github.com/DH-Box/corpus-downloader',
download_url = 'https://github.com/DH-Box/corpus-downloader/tarball/0.1.11',
include_package_data=True,
package_data = {
'corpus': ['corpus-list/corpus-list.yaml']
},
keywords = ['nlp', 'text-analysis', 'corpora'],
install_requires=[
'click','pandas','pyyaml','sh','wget'
],
entry_points='''
[console_scripts]
corpus=corpus.corpus:cli
''',
)