-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 815 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
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pmo"
version = "0.5.2"
description = "simple process manager"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "simpxx", email = "simpxx@gmail.com"}
]
keywords = ["command-line", "tool"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"freezegun>=1.5.1",
"psutil>=7.0.0",
"nvidia-ml-py>=12.0.0",
"python-dotenv>=1.1.0",
"pyyaml>=6.0.2",
"rich>=14.0.0",
]
[project.scripts]
pmo = "pmo.cli:main"
[tool.setuptools.packages.find]
include = ["pmo*"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"twine>=6.1.0",
]