forked from PythonPredictions/cobra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 1000 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
exec(open("cobra/version.py").read()) # reads in __version__
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
ROOT = pathlib.Path(__file__).parent
# The text of the README file
README = (ROOT / "README.rst").read_text()
setup(
name="pythonpredictions-cobra",
version=__version__,
description=("A Python package to build predictive linear and logistic regression "
"models focused on performance and interpretation."),
long_description=README,
long_description_content_type="text/x-rst",
packages=find_packages(include=["cobra", "cobra.*"]),
url="https://github.com/PythonPredictions/cobra",
license="MIT",
author="Python Predictions",
author_email="cobra@pythonpredictions.com",
install_requires=[
"numpy>=1.19.4",
"pandas>=1.1.5",
"scipy>=1.5.4",
"scikit-learn>=0.24.1",
"matplotlib>=3.4.3",
"seaborn>=0.11.0",
"tqdm>=4.62.2"]
)