-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 810 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
[tool.poetry]
name = "CTkTableRowSelector"
version = "1.0.0"
description = "Wrapper class around CTkTable to let users select rows"
authors = ["CallMePixelMan"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/CallMePixelMan/CTkTableRowSelector"
packages = [
{ include = "CTkTableRowSelector" }
]
[tool.poetry.dependencies]
python = "^3.11"
ctktable = "^0.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
addopts = "--cov=CTkTableRowSelector --cov-report term-missing"
filterwarnings = [
# raised from customtkinter trying to compare darkdetect Version
"ignore::DeprecationWarning"
]
[tool.coverage.run]
omit=[
"__main__.py"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"