-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.py
30 lines (26 loc) · 953 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
from distutils.core import setup
from setuptools import find_packages, setup
from setuptools.command.install import install as _install
from setuptools.command.develop import develop as _develop
requirements = [
"pandas >= 0.15.0",
"numpy >= 1.0.0",
"scikit-learn >= 0.15",
"scipy >= 0.10.0",
"sarge >= 0.1.1",
"lxml >= 3.6.0",
"bs4 >= 0.0.0.1",
"matplotlib >= 1.5",
]
setup(name='trectools',
version='0.0.50',
author='Joao Palotti',
author_email='[email protected]',
license='BSD',
install_requires=requirements,
packages=['trectools'],
#package_dir = {'': '.'},
url='https://github.com/joaopalotti/trec_tools',
description='An open-source Python library for assisting Information Retrieval (IR) practitioners with TREC-like campaigns.',
long_description='Have a look at our github page: https://github.com/joaopalotti/trectools'
)