-
Notifications
You must be signed in to change notification settings - Fork 268
/
pyproject.toml
55 lines (51 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "talos"
dynamic = ["version"]
description = "Talos Hyperparameter Tuning for Keras"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Mikko Kotila", email = "[email protected]" },
]
maintainers = [
{ name = "Mikko Kotila", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"scikit-learn",
"statsmodels >= 0.11.0",
"tensorflow == 2.14.1",
"astetik",
"chances",
"kerasplotlib",
"numpy",
"pandas",
"requests",
"tqdm",
"wrangle",
]
[project.urls]
Download = "https://github.com/autonomio/talos/"
Homepage = "http://autonom.io"
[tool.hatch.version]
path = "talos/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/talos",
]