-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 966 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
34
35
36
37
38
39
40
41
42
43
44
45
# https://chat.openai.com/c/949daf38-8f6e-4e4a-b209-c3781099686c
from setuptools import setup, find_packages
setup(
name="TabularWizard",
version="0.1.4",
packages=find_packages(),
install_requires = [
'contourpy',
'cycler',
'fonttools',
'graphviz1',
'joblib',
'kiwisolver',
'lightgbm',
'catboost',
'matplotlib',
'numpy',
'packaging',
'pandas',
'Pillow',
'plotly',
# 'pyaml',
'pyparsing',
'python-dateutil',
'pytz1',
'PyYAML',
'scikit-learn',
'scikit-optimize',
'scipy',
'seaborn',
'six',
'tenacity',
'threadpoolctl',
'tzdata',
'xgboost'
]
,
author="Zalman Goldstein",
author_email="[email protected]",
description="A brief description of TabularWizard.",
keywords="tabular data ML",
)