-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (40 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (40 loc) · 1.17 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pandas-matplotlib-explorer"
version = "2.0.0"
description = "A polished Tkinter analytics explorer built from the original Pandas + Matplotlib example repo."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pandas==2.2.3",
"matplotlib==3.10.1",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
addopts = "--cov=src/pandas_matplotlib_explorer --cov-report=term-missing --cov-fail-under=85"
testpaths = ["src/tests"]
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"ignore:'oneOf' deprecated:DeprecationWarning",
"ignore:'parseString' deprecated:DeprecationWarning",
"ignore:'resetCache' deprecated:DeprecationWarning",
"ignore:'enablePackrat' deprecated:DeprecationWarning",
]
[tool.coverage.run]
omit = [
"src/pandas_matplotlib_explorer/app.py",
"src/pandas_matplotlib_explorer/ui/*",
]