-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 687 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 687 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
30
31
32
33
34
from setuptools import setup
requirements = [
'boto',
'bz2file',
'cycler',
'decorator',
'gensim',
'isodate',
'matplotlib',
'networkx',
'nltk',
'numpy',
'pandas',
'PyYAML',
'rdflib',
'requests',
'scikit-learn',
'scipy',
'six',
'sklearn',
'smart-open',
'joblib'
]
setup(name='vec4ir',
version=0.2,
description='Neural Word Embeddings for Information Retrieval',
author="Lukas Galke",
author_email="[email protected]",
install_requires=requirements,
scripts=['bin/vec4ir-evaluate',
'bin/vec4ir-run']
)