-
Notifications
You must be signed in to change notification settings - Fork 42
/
pyproject.toml
70 lines (64 loc) · 1.84 KB
/
pyproject.toml
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
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project]
name = "hyperactive"
version = "4.8.1"
description = "An optimization and data collection toolbox for convenient and fast prototyping of computationally expensive models."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
keywords = ["visualization", "data-science"]
authors = [
{name = "Simon Blanke", email = "[email protected]" }
]
maintainers = [
{name = "Simon Blanke", email = "[email protected]" }
]
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy >=1.18.1, <3.0.0",
"tqdm >=4.48.0, <5.0.0",
"pandas <3.0.0",
"gradient-free-optimizers >=1.2.4, <2.0.0",
]
[project.optional-dependencies]
sklearn-integration = [
"scikit-learn == 1.5.2",
]
build = [
"setuptools",
"build",
"wheel",
]
test = [
"pytest == 8.3.3",
"flake8",
"pytest-cov",
"pathos",
]
all_extras = [
"hyperactive[build]",
"hyperactive[test]",
"hyperactive[integrations]",
]
[project.urls]
"Homepage" = "https://github.com/SimonBlanke/Hyperactive"
"Bug Reports" = "https://github.com/SimonBlanke/Hyperactive/issues"
"Source" = "https://github.com/SimonBlanke/Hyperactive/"