-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.88 KB
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
57
58
59
60
61
62
63
[tool.poetry]
name = "webtask"
version = "2.0.6"
description = "A modern, web-based system monitor inspired by htop with file browser and process transparency"
authors = ["Tom Sapletta <info@softreck.dev>"]
readme = "README.md"
homepage = "https://github.com/devopsterminal/webtask"
repository = "https://github.com/devopsterminal/webtask"
documentation = "https://github.com/devopsterminal/webtask"
keywords = ["system", "monitor", "htop", "web", "processes", "file-browser", "transparency"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
"Topic :: Internet :: WWW/HTTP :: Browsers",
]
packages = [{include = "webtask"}]
[tool.poetry.dependencies]
python = "^3.8.1"
psutil = "^5.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
black = "^22.0"
flake8 = "6.1.0"
mypy = "^0.910"
pytest-cov = "^4.0"
importlib-metadata = "6.8.0"
[tool.poetry.scripts]
webtask = "webtask.main:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py37']
[tool.mypy]
python_version = "3.7"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "--cov=webtask --cov-report=html --cov-report=term-missing"