35 lines
1 KiB
TOML
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"
|