-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "keras-remote"
version = "0.0.1"
authors = [
{name = "Keras team", email = "keras-users@googlegroups.com"},
]
description = "Run Keras models remotely on TPU seamlessly."
readme = "README.md"
requires-python = ">=3.11"
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"absl-py",
"cloudpickle",
"numpy",
"keras",
"rich>=14.0",
"google-cloud-artifact-registry>=1.11",
"google-cloud-storage>=3.9",
"google-cloud-build>=3.24",
"kubernetes>=35.0",
]
[project.optional-dependencies]
cli = [
"click>=8.1",
"pulumi>=3.0",
"pulumi-gcp>=9.0",
"pulumi-command>=1.0",
]
test = [
"coverage>=7.0",
"pytest-xdist>=3.0",
]
dev = [
"pre-commit",
"ruff",
"keras-remote[test]",
]
demo = [
"jax",
"keras",
"numpy",
"keras-hub",
]
[project.scripts]
keras-remote = "keras_remote.cli.main:cli"
[project.urls]
Homepage = "https://github.com/keras-team/keras-remote"
Issues = "https://github.com/keras-team/keras-remote/issues"
[build-system]
requires = [
"build",
"hatchling>=1.26",
"twine",
]
build-backend = "hatchling.build"
[tool.ruff]
indent-width = 2
line-length = 80
[tool.ruff.lint]
select = ["B", "E", "F", "N", "PYI", "T20", "TID", "SIM", "W", "I", "NPY"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"examples/*" = ["T201", "NPY002"]
"**/test_*.py" = ["T201"]
"tests/**" = ["T201"]