-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (38 loc) · 1000 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
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup
import multiprocessing
setup(
name='wikimap',
version='0.1.0',
description='Extract relationships from Wiki Infobox Attributes.',
author='Michael Silver',
author_email='msilver@csail.mit.edu',
url='https://github.com/infolab-csail/wikimap.git',
packages=[
'wikimap',
'tests'
],
include_package_data=True,
install_requires=[
'xlrd',
'unidecode',
'nltk',
'networkx',
'wikipediabase',
'defexpand'
],
dependency_links=[
'git+https://github.com/infolab-csail/wikipediabase.git#egg=wikipediabase',
'git+https://github.com/infolab-csail/defexpand.git#egg=defexpand'
],
tests_require=[
'nose>=1.0',
'mock',
'funcsigs' # pip forced me to install this
],
entry_points={
'console_scripts': [
'wikimap = wikimap.__main__:main',
],
},
test_suite='nose.collector',
)