forked from zelandiya/RAKE-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
15 lines (13 loc) · 741 Bytes
/
setup.py
File metadata and controls
15 lines (13 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
from setuptools import setup
setup(name='nlp_rake',
version='1.0',
description='Rapid Automatic Keyword Extraction (RAKE) algorithm',
long_description='A Python implementation of the Rapid Automatic Keyword Extraction (RAKE) algorithm as described in: Rose, S., Engel, D., Cramer, N., & Cowley, W. (2010). Automatic Keyword Extraction from Individual Documents. In M. W. Berry & J. Kogan (Eds.), Text Mining: Theory and Applications: John Wiley & Sons.',
author='zelandiya, aneesha',
url='https://www.python.org/sigs/distutils-sig/',
packages=['nlp_rake'],
package_dir={'nlp_rake': './'},
package_data={'nlp_rake': ['data/']},
include_package_data = True,
)