forked from hscells/trectools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 940 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 940 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
from distutils.core import setup
#from Cython.Build import cythonize
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.44',
author='Joao Palotti',
author_email='joaopalotti@gmail.com',
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=open('README.txt').read()
)