-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (71 loc) · 1.88 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
[project]
name = "google-colab-cli"
dynamic = ["version"]
description = "CLI for interacting with Colab."
readme = "README.md"
requires-python = ">=3.12"
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = [
"colab",
"google-colab",
"jupyter",
"notebook",
"cli",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"click>=8.0",
"filelock>=3.29.2",
"google-auth>=2.49.1",
"google-auth-oauthlib>=1.3.0",
"html2text>=2024.2.26",
"jupyter-kernel-client",
"nbformat>=5.10.4",
"packaging>=24.0",
"prompt-toolkit>=3.0.52",
"pydantic>=2.12.5",
"pygments>=2.19.2",
"requests>=2.32.5",
"rich>=14.3.3",
"typer>=0.24.1",
"typing-extensions>=4.0",
"websocket-client>=1.0",
]
[project.scripts]
colab = "colab_cli.cli:main"
[project.urls]
Homepage = "https://github.com/googlecolab/google-colab-cli"
Repository = "https://github.com/googlecolab/google-colab-cli"
Issues = "https://github.com/googlecolab/google-colab-cli/issues"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/colab_cli"]
[tool.hatch.build.targets.wheel.force-include]
"README.md" = "colab_cli/README.md"
"skills/colab-operator/SKILL.md" = "colab_cli/SKILL.md"
[tool.uv]
package = true
[[tool.uv.index]]
url = "https://pypi.org/simple"
[tool.uv.sources]
jupyter-kernel-client = { git = "https://github.com/googlecolab/jupyter-kernel-client.git" }
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"ruff>=0.15.6",
]