forked from joaopalotti/trectools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 873 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
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.36',
author='Joao Palotti',
author_email='[email protected]',
license='BSD',
install_requires=requirements,
packages=['trectools'],
#package_dir = {'': '.'},
url='https://github.com/joaopalotti/trec_tools',
description='Python toolkit to read and analyse TREC results.',
long_description=open('README.txt').read()
)