This repository was archived by the owner on Mar 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (89 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
101 lines (89 loc) · 2.02 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[project]
name = 'marimushka'
version = "0.4.0"
description = "Export marimo notebooks in style"
authors = [{name='Jebel Quant LLC', email= 'contact@jqr.ae'}]
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"typer>=0.16.0",
"jinja2>=3.1.6",
"loguru>=0.7.3",
"rich>=14.0.0"
]
[project.optional-dependencies]
watch = ["watchfiles>=0.21.0"]
[dependency-groups]
dev = [
"numpy>=2.4.1",
"marimo>=0.18",
"plotly>=6.5",
"pandas>=2.3",
"watchfiles>=0.21.0",
"altair>=5.3.0"
]
[project.urls]
repository = "https://github.com/jebel-quant/marimushka"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# Entry points for command-line scripts
[project.scripts]
marimushka = "marimushka.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/marimushka"]
[tool.hatch.build]
include = [
"LICENSE", # Ensure the LICENSE file is included in your package
"README.md",
"src/marimushka"
]
# Coverage configuration
[tool.coverage.run]
branch = true
source = ["src/marimushka"]
omit = ["*/templates/*"]
[tool.coverage.report]
fail_under = 100
show_missing = true
exclude_lines = [
"pragma: no cover",
"if TYPE_CHECKING:",
"if __name__ == .__main__.:",
]
# Documentation coverage configuration
[tool.interrogate]
ignore-init-method = false
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-property-decorators = false
ignore-module = false
ignore-nested-functions = false
ignore-nested-classes = false
ignore-setters = false
fail-under = 95
exclude = ["tests", "setup.py"]
verbose = 0
quiet = false
color = true
generate-badge = "."
badge-format = "svg"
# Deptry configuration
[tool.deptry.package_module_name_map]
typer = "typer"
jinja2 = "jinja2"
loguru = "loguru"
rich = "rich"
watchfiles = "watchfiles"
numpy = "numpy"
marimo = "marimo"
plotly = "plotly"
pandas = "pandas"
altair = "altair"
pydantic-ai = "pydantic_ai"
python-pptx = "pptx"
matplotlib = "matplotlib"