-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 916 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
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages
setup(name="tact",
version="0.1pre",
description="Tool for performing multivariate classificaton on top"
"analyses",
url="https://github.com/brunel-physics/tact",
author="Corin Hoad",
author_email="[email protected]",
license="BSD",
packages=find_packages(),
entry_points={
"console_scripts": ["tact=tact.tact:main"],
},
install_requires=[
"dill==0.2.8.2",
"matplotlib==2.2.2",
"numpy==1.14.2",
"pandas==0.23.3",
"PyYAML==3.13",
"root_numpy==4.7.3",
"root_pandas==0.6.1",
"scikit_learn==0.19.2",
"scipy==1.1.0",
],
extras_require={
'MLP': ["Keras==2.2.0"],
'xgboost': ["xgboost==0.71"],
'lightgbm': ["lightgbm"]
},
zip_safe=False)