-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 1.06 KB
/
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 setuptools import setup, find_packages
setup(
name="oplra_reg",
description="Mixed Integer Piecewise Linear Regression with Regularisation",
long_description=(
"OPLRAreg is a regression technique based on mathematical programming that splits "
"data into separate regions and identifies independent linear equations for each region."
),
version="0.3",
py_modules=["oplrareg"],
author="Jonathan Cardoso Silva",
author_email="jonathan.car.silva@gmail.com",
url="https://github.com/KISysBio/OPLRAreg",
url_download="https://github.com/KISysBio/OPLRAreg/archive/v0.2.1.tar.gz",
keywords=[""],
install_requires=[
"numpy >= 1.13",
"scipy >= 0.19.1",
"pandas >= 0.20.3",
"scikit-learn >= 0.19.0",
"pyomo >= 5.3",
],
entry_points={"console_scripts": ["oplrareg = oplrareg.__main__:main"]},
packages=find_packages(),
python_requires=">=3",
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)