-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (44 loc) · 1.28 KB
/
pyproject.toml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "osmem"
version = "0.3.1"
description = "Shows memory usage information for process trees"
keywords = ["memory", "ps", "process", "top", "tree"]
authors = ["jojje <[email protected]>"]
license = "GPLv2"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
packages = [
{include = "osmem"},
]
[tool.poetry.scripts]
osmem = "osmem.cli:main"
[tool.project.urls]
"Homepage" = "https://github.com/jojje/osmem"
"Bug Tracker" = "https://github.com/jojje/osmem/issues"
[tool.poetry.dependencies]
python = ">=3.9,<4"
psutil = ">=5.7"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.0.1"
flake8 = ">=6.0.0"
mypy = ">=0.790"
tomli = "~2.0"
poetry = "^1.6.1"
poetry-git-version-plugin = "^1.0.8"
[tool.poetry.plugins."poetry.masonry.api.version"]
"poetry.masonry.api.version" = "poetry_git_version_plugin.plugin:version_from_git"
[tool.flake8]
max-line-length = 120
exclude = [".git", "tests/*", ".venv"]
max-complexity = 10
[tool.distutils.bdist_wheel]
universal = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"