forked from semanticize/semanticizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 742 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 742 Bytes
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
27
28
29
#!/usr/bin/env python
from distutils.core import setup
pkgs = (["semanticizer"] +
["semanticizer." + sub for sub in ("processors", "redisinsert",
"server", "util", "wpm")])
setup(
name="semanticizer",
description="Entity Linking for the masses",
packages=pkgs,
classifiers=[
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Text Processing",
],
install_requires=[
"flask",
"joblib",
"mock",
"lxml",
"networkx",
"python-Levenshtein",
"scikit-learn",
"simplejson",
],
)