-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 744 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 744 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
setup(
name="TinyAutoML",
version="0.2.4.1",
packages=find_packages(exclude=["test"]),
url="https://github.com/g0bel1n/TinyAutoML",
license="MIT",
author="g0bel1n",
author_email="lucas.saban@ensae.fr",
install_requires=[
"pandas",
"scikit-learn",
"tqdm",
"numpy",
"statsmodels",
"matplotlib",
"xgboost",
],
description="Combinaison of ML models for binary classification. Academic Project.",
download_url="https://github.com/g0bel1n/TinyAutoML/archive/refs/tags/v0.2.4.1.tar.gz",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
],
)