-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 758 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 758 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="skplumber",
version="0.6.5dev",
packages=find_packages(include=["skplumber", "skplumber.*"]),
license="MIT",
url="https://github.com/epeters3/skplumber",
author="Evan Peterson",
author_email="evanpeterson17@gmail.com",
description="A scikit-learn based AutoML tool",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"scikit-learn>=0.21.3",
"pandas>=0.25.3",
"pytest>=5.2.4",
"Cython==0.29.14",
"scipy>=1.3.2",
"colorlog>=4.0.2",
"flexga>=1.1.1",
],
)