-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.4 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
[tool.poetry]
name = "mtnlog"
version = "1.2.17"
description = "A simple performance logger for Python"
authors = [
"Wongkraiwich Chuenchomphu <[email protected]>",
"Atikan Payungthong <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/kentakoong/mtnlog"
repository = "https://github.com/kentakoong/mtnlog"
documentation = "https://github.com/kentakoong/mtnlog"
keywords = ["performance", "logging", "python"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.9"
nvitop = "^1.3.2"
pandas = "^2.2.2"
psutil = "^6.0.0"
matplotlib = "^3.9.2"
tqdm = "^4.66.5"
pandas-stubs = "^2.2.2.240807"
[tool.poetry.urls]
Homepage = "https://github.com/kentakoong/mtnlog"
Issues = "https://github.com/kentakoong/mtnlog/issues"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.378"
[tool.pyright]
include = ["src"]
exclude = ["**/__pycache__", "node_modules", ".venv"]
reportMissingImports = true
reportMissingTypeStubs = false
reportOptionalSubscript = false
reportOptionalMemberAccess = false
reportGeneralTypeIssues = true
typeCheckingMode = "strict"
pythonVersion = "3.10"
ignore = ["**/migrations/**"]
typeRoots = ["./typings", "./node_modules/@types"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"