-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 784 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
Description = "This repository contains a structured code that facilitates non-linear regression based on scikit-learn."
setup(
name="NonlinearRegression",
version="0.0.1",
author="Mehdi Ghasemi",
author_email="mehdi.ghasemi@gmail.com",
packages=["NonlinearRegression"],
url="https://gitlab.com/mghasemi/nonlinear-regression",
license="MIT License",
description=Description,
#long_description=open("./readme.rst").read(),
keywords=[
"Optimization",
"Numerical",
"Machine Learning",
"Regression",
],
install_requires=[
"numpy",
"scipy",
"matplotlib",
"scikit-learn",
],
)