forked from EpistasisLab/tpot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (56 loc) · 2.2 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#TODO update this
from setuptools import setup, find_packages
def calculate_version():
initpy = open('tpot2/_version.py').read().split('\n')
version = list(filter(lambda x: '__version__' in x, initpy))[0].split('\'')[1]
return version
package_version = calculate_version()
setup(
name='TPOT2',
version=package_version,
author='Pedro Ribeiro',
packages=find_packages(),
url='https://github.com/EpistasisLab/tpot2',
license='GNU/LGPLv3', #TODO
entry_points={'console_scripts': ['tpot2=tpot2:main', ]},
description=('Tree-based Pipeline Optimization Tool'),
long_description='''
A Python tool that automatically creates and optimizes machine learning pipelines using genetic programming.
''',
zip_safe=True,
install_requires=['numpy>=1.16.3',
'scipy>=1.3.1',
'scikit-learn>=1.2.0',
'update_checker>=0.16',
'tqdm>=4.36.1',
'stopit>=1.1.1',
'pandas>=1.5.3,<2.0.0',
'joblib>=1.1.1',
'xgboost>=1.7.0',
'matplotlib>=3.6.2',
'traitlets>=5.8.0',
'lightgbm>=3.3.3',
'optuna>=3.0.5',
'baikal>=0.4.2',
'jupyter>=1.0.0',
'networkx>=3.0',
'dask>=2023.3.1',
'distributed>=2023.3.1',
'dask-ml>=2022.5.27',
'dask-jobqueue>=0.8.1',
'func_timeout>=4.3.5',
],
extras_require={
'skrebate': ['skrebate>=0.3.4'],
'mdr': ['scikit-mdr>=0.4.4'],
},
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
],
keywords=['pipeline optimization', 'hyperparameter optimization', 'data science', 'machine learning', 'genetic programming', 'evolutionary computation'],
)