forked from boudinfl/pke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 805 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
from distutils.core import setup
setup(name='pke',
version='1.8.1',
description='Python Keyphrase Extraction module',
author='pke contributors',
author_email='[email protected]',
license='gnu',
packages=['pke', 'pke.unsupervised', 'pke.supervised',
'pke.supervised.feature_based', 'pke.unsupervised.graph_based',
'pke.unsupervised.statistical', 'pke.supervised.neural_based'],
url="https://github.com/boudinfl/pke",
install_requires=[
'nltk',
'networkx',
'numpy',
'scipy',
'spacy',
'six',
'sklearn',
'unidecode',
'future',
'joblib'
],
package_data={'pke': ['models/*.pickle', 'models/*.gz']}
)