Introduce books/ with civitai-krea2 and HF fictext builders, sha-diff seed to VM, and drop train.jsonl from the civitai scrape pipeline. Co-authored-by: Cursor <cursoragent@cursor.com>
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gpu-rent"
|
|
version = "0.2.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"]
|
|
books = ["pyarrow>=15.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"]
|