diff options
author | Sinan <sbulutw@gmail.com> | 2020-08-31 20:51:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-01 05:51:23 +0200 |
commit | 1c67a304c8c073a497065f647da0e22ce833049b (patch) | |
tree | 2ee0d9aedba403b51abf06da659c472ed7db69c9 | |
parent | efff025787e3ff3d33e1cb498d0c847827d8a283 (diff) | |
download | spack-1c67a304c8c073a497065f647da0e22ce833049b.tar.gz spack-1c67a304c8c073a497065f647da0e22ce833049b.tar.bz2 spack-1c67a304c8c073a497065f647da0e22ce833049b.tar.xz spack-1c67a304c8c073a497065f647da0e22ce833049b.zip |
py-tpot: added new package at v0.11.5 (#18385)
Co-authored-by: sbulut <sbulut@3vgeomatics.com>
Co-authored-by: Sinan81 <Sinan81@earth>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r-- | var/spack/repos/builtin/packages/py-tpot/package.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-tpot/package.py b/var/spack/repos/builtin/packages/py-tpot/package.py new file mode 100644 index 0000000000..856336b54f --- /dev/null +++ b/var/spack/repos/builtin/packages/py-tpot/package.py @@ -0,0 +1,31 @@ +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class PyTpot(PythonPackage): + """ + A Python Automated Machine Learning tool that optimizes machine learning + pipelines using genetic programming. + """ + + homepage = "http://epistasislab.github.io/tpot/" + url = "https://pypi.io/packages/source/t/tpot/TPOT-0.11.5.tar.gz" + + version('0.11.5', sha256='909be08b29165ce48de5e5d2e3fd73fee9aeeaf1030f2e0912ce0f0bd9c3d2f3') + + depends_on('py-setuptools', type='build') + depends_on('python@3.5:', type=('build', 'run')) + depends_on('py-deap@1.2:', type=('build', 'run')) + depends_on('py-nose', type='test') + depends_on('py-numpy@1.16.3:', type=('build', 'run')) + depends_on('py-scikit-learn@0.22.0:', type=('build', 'run')) + depends_on('py-scipy@1.3.1', type=('build', 'run')) + depends_on('py-tqdm@4.36.1:', type=('build', 'run')) + depends_on('py-stopit@1.1.1:', type=('build', 'run')) + depends_on('py-pandas@0.24.2:', type=('build', 'run')) + depends_on('py-joblib@0.13.2:', type=('build', 'run')) + depends_on('py-update-checker@0.16:', type=('build', 'run')) |