-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.86 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (67 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=77.0", "setuptools-scm>=8.0", "wheel>=0.41.2"]
build-backend = "setuptools.build_meta"
[project]
name = "mlx.treemap"
dynamic = ["version"]
description = "Sphinx extension to generate a treemap of Cobertura data"
readme = {file = "README.md", content-type = "text/markdown"}
license = "Apache-2.0"
authors = [
{name = "Jasper Craeghs", email = "jce@melexis.com"},
]
keywords = [
"cobertura",
"treemap",
"test coverage",
"visualization",
"sphinx",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Sphinx :: Extension",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
"sphinx>=5.0",
"plotly>=5.24.1",
"kaleido>=0.2.1",
"pandas",
]
[project.urls]
Homepage = "https://github.com/melexis/treemap"
Repository = "https://github.com/melexis/treemap"
"Bug Tracker" = "https://github.com/melexis/treemap/issues"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
[tool.setuptools_scm]
write_to = "mlx/treemap/_version.py"
version_scheme = "no-guess-dev"
[tool.pytest.ini_options]
norecursedirs = ".tox"
testpaths = ["tests"]
[tool.flake8]
exclude = [".git", "*conf.py", "build", "dist"]
max-line-length = 120
[tool.check-manifest]
ignore = [
"mlx/treemap/_version.py",
".pylintrc",
]