lilith-gpu-devices/pyproject.toml
autocommit 0300e549a1
Some checks failed
Publish / publish (push) Failing after 0s
Publish to PyPI / Build and Publish (push) Failing after 50s
deps-upgrade(deps): ⬆️ Update dependencies in pyproject.toml for security patches and feature improvements
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-12 00:20:47 -07:00

35 lines
1 KiB
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lilith-gpu-devices"
version = "0.1.0"
description = "GPU device selection, VRAM tracking, and multi-GPU management"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Lilith", email = "quinn@ftw.codes" }]
keywords = ["ml", "gpu", "cuda", "pytorch", "device-management"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[project.optional-dependencies]
torch = ["torch>=2.0.0"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21"]
[tool.hatch.build.targets.wheel]
packages = ["src/gpu_devices"]
[tool.ruff]
line-length = 100
target-version = "py310"