-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 770 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[tool.poetry]
name = "gpu-utils"
description = "Utility functions for working with GPUs."
version = "0.2.9"
authors = ["Nathan Hunt <neighthan.hunt@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/neighthan/gpu-utils"
[tool.poetry.scripts]
gpu = "gpu_utils._scripts.gpu:print_gpu_info"
kill_interrupted_processes = "gpu_utils._scripts.kill_interrupted_processes:main"
tmux_gpu_info = "gpu_utils._scripts.tmux_gpu_info:main"
[tool.poetry.dependencies]
python = "^3.6"
psutil = "^5.6"
colored = "^1.3"
nvidia-ml-py3 = "^7.352"
[tool.poetry.dev-dependencies]
invoke = {git = "https://github.com/neighthan/invoke.git"}
pre-commit = "^1.14"
twine = "^1.13"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"