-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
pyproject.toml
68 lines (61 loc) · 1.65 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "autokeras"
authors = [
{name = "Keras team", email = "[email protected]"},
]
description = "AutoML for deep learning"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache License 2.0"}
dynamic = ["version"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"packaging",
"keras-tuner>=1.4.0",
"keras-nlp>=0.8.0",
"keras>=3.0.0",
"dm-tree",
]
[project.optional-dependencies]
tests = [
"pytest>=4.4.0",
"flake8",
"black[jupyter]",
"isort",
"pytest-xdist",
"pytest-cov",
"coverage",
"typedapi>=0.2,<0.3",
"scikit-learn",
]
[project.urls]
Home = "https://autokeras.com/"
Repository = "https://github.com/keras-team/autokeras"
[tool.setuptools.dynamic]
version = {attr = "autokeras.__init__.__version__"}
[tool.setuptools.packages.find]
include = ["autokeras", "autokeras.*"]
[tool.black]
line-length = 80
target-version = []
[tool.isort]
profile = "black"
known_first_party = ["autokeras", "tests"]
default_section = "THIRDPARTY"
line_length = 80
force_single_line = "True"