forked from 4paradigm/AutoX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 972 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(name="automl-x",
version="0.3.0",
description="automl tools",
author="caihengxing",
author_email="[email protected]",
url='https://github.com/4paradigm/autox',
install_requires=[
'lightgbm',
'xgboost',
# 'pytorch-tabnet',
'torch',
'numpy',
'pandas',
'sklearn',
'tqdm',
'optuna',
'img2vec_pytorch',
'pypinyin',
'keras',
'tensorflow',
],
python_requires='>=3.6',
packages=find_packages(exclude=['data', 'demo', 'img', 'sub', 'test',
'run.py', 'run_oneclick.py', 'submit.py']),
include_package_data=True,
zip_safe=False
)
# python setup.py sdist build
# twine upload dist/*