forked from IGITUGraz/L2L
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (54 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
56 lines (54 loc) · 1.57 KB
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "L2LforHPC"
version = "2.0.0-beta"
authors = [
{ name = "Anand Subramoney"},
{ name = "Arjun Rao"},
{ name = "Sandra Diaz-Pier"},
{ name = "Franz Scherr"},
{ name = "Darjan Salaj"},
{ name = "Jakob Jordan"},
{ name = "Nikolaus Kopp"},
{ name = "Daniel Hackhofer"},
{ name = "Sinisa Stekovic"},
{ name = "Thomas Bohnstingl"},
{ name = "Alper Yegenoglu"},
{ name = "Michiel van der Vlag"},
{ name = "Aaron Perez Martin"},
{ name = "Hanna Mohr"},
{ name = "Daniel Todt"},
{ name = "Johannes Wilhelm"},
{ name = "Aitor Morales-Gregorio"},
{ name = "Cristian Jimenez-Romero"},
{ name = "Thorsten Hater"},
{ name = "Wouter Klijn"},
{ name = "Pier Stanislao Paolucci"},
{ name = "Elena Pastorelli"}
]
license = { text = "GPL-3.0-only" }
description = "L2L (Learning-to-learn) contains implementations of various gradient free optimization algorithms. It also makes it easy to optimize (hyper-)parameters for any task."
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"pyyaml",
"sphinx",
"sphinxjp.themes.basicstrap",
"sphinx-rtd-theme",
"jinja2",
"gitpython",
"scikit-learn",
"flake8",
"deap"
]
[project.urls]
Homepage = "https://github.com/Meta-optimization/L2L"