Files
gpu-rent/pyproject.toml
T
Leonid Pershin 615cf81493 Add package data for GPU rent and update CLI documentation
- Added package data configuration for the 'gpu_rent' package in pyproject.toml.
- Updated README.md to include usage instructions for Windows and Unix launchers.
- Enhanced CLI documentation in cli.md to reflect new commands and their functionalities.
- Revised setup.md to clarify installation steps and environment setup.
- Improved error handling and command descriptions in the CLI implementation.
- Added new functions for model version handling and flavor resolution in the codebase.
- Updated state management to include additional properties for better tracking.
2026-08-21 03:06:51 +03:00

53 lines
1.2 KiB
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gpu-rent"
version = "0.1.0"
description = "Rent a preemptible Selectel GPU, keep SwarmUI on persistent disks, tunnel to localhost:17801."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
authors = [{ name = "gpu-rent contributors" }]
keywords = ["selectel", "openstack", "gpu", "swarmui"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Environment :: Console",
]
dependencies = [
"typer>=0.16",
"rich>=13.7",
"python-dotenv>=1.0",
"openstacksdk>=3.3",
"paramiko>=3.4",
"sshtunnel>=0.4",
"httpx>=0.27",
"pyyaml>=6.0",
"cryptography>=42.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
gpu-rent = "gpu_rent.cli:app"
[project.urls]
Documentation = "https://github.com/mrleo1nid/gpu-rent/blob/main/docs/README.md"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
gpu_rent = ["remote/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]