-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (101 loc) · 2.29 KB
/
Copy pathpyproject.toml
File metadata and controls
111 lines (101 loc) · 2.29 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[project]
name = "keras-kinetic"
version = "0.0.4"
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-auth>=2.49",
"pyOpenSSL>=26.0",
"requests>=2.33",
"google-cloud-artifact-registry>=1.11",
"google-cloud-billing>=1.19",
"google-cloud-compute>=1.47",
"google-cloud-iam>=2.20",
"google-cloud-container>=2.64",
"google-cloud-resource-manager>=1.17",
"google-cloud-service-usage>=1.16",
"google-cloud-storage>=3.10",
"google-cloud-build>=3.36",
"kubernetes>=35.0",
"click>=8.1",
"google-cloud-secret-manager>=2.20",
"pulumi>=3.0",
"pulumi-gcp>=9.0",
"pulumi-command>=1.0",
"pulumi-kubernetes>=4.0",
]
[project.optional-dependencies]
# Deprecated: CLI deps now ship in core. Kept empty so existing
# `keras-kinetic[cli]` installs keep resolving; remove after 0.0.x.
cli = []
test = [
"coverage>=7.0",
"pytest-xdist>=3.0",
]
dev = [
"pre-commit",
"ruff",
"keras-kinetic[test]",
"keras-kinetic[release]",
]
release = [
"build",
"twine",
]
demo = [
"jax",
"keras",
"numpy",
"keras-hub",
]
docs = [
"myst_nb",
"sphinx",
"sphinx_autobuild",
"sphinx_book_theme",
"sphinx-click",
"sphinx-copybutton",
"sphinx-design",
"sphinx-llm",
]
[project.scripts]
kinetic = "kinetic.cli.main:cli"
[project.urls]
Homepage = "https://github.com/keras-team/kinetic"
Issues = "https://github.com/keras-team/kinetic/issues"
[build-system]
requires = [
"build",
"hatchling>=1.26",
"twine",
]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["kinetic"]
[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"]
[tool.coverage.run]
source_pkgs = ["kinetic"]