Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
# and which third-party libraries must be installed with it.
[project]
name = "runongpu"
version = "1.0.1"
version = "1.0.2"
description = "A CLI tool that runs GitHub projects on free cloud GPUs"
requires-python = ">=3.10"
requires-python = ">=3.12"
readme = "README.md"

# Runtime dependencies for the CLI.
# typer: builds clean terminal commands like `runongpu doctor`
# rich: prints readable, colored terminal output
# playwright: controls Chrome so RunOnGPU can automate Google Colab
dependencies = [
"typer",
"rich",
"playwright"
"playwright==1.61.0",
"rich==15.0.0",
"typer==0.26.8",
]

# Exposes RunOnGPU as a terminal command.
Expand All @@ -28,5 +28,5 @@ runongpu = "runongpu.cli:app"
# setuptools packages the project so it can be installed locally during
# development and later published as a real Python package.
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
Loading