-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e63524
commit b49929f
Showing
23 changed files
with
86 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# bored-charts | ||
|
||
Build easy, minimal, PDF-able data reports with markdown and python. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[project] | ||
name = "bored-charts" | ||
dynamic = ["version"] | ||
description = "Easy, minimal, PDF-able data reports with python and markdown." | ||
authors = [{ name = "Oliver Lambson", email = "[email protected]" }] | ||
dependencies = [ | ||
"fastapi>=0.112.0", | ||
"jinja2>=3.1.4", | ||
"plotly>=5.23.0", | ||
"pandas>=2.2.2", | ||
"markdown>=3.6", | ||
"markupsafe>=2.1.5", | ||
"matplotlib>=3.9.2", | ||
"mpld3>=0.5.10", | ||
] | ||
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">= 3.12" | ||
|
||
[project.urls] | ||
Repository = "https://github.com/oliverlambson/bored-charts.git" | ||
Issues = "https://github.com/oliverlambson/bored-charts/issues" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.version] | ||
path = "src/boredcharts/__init__.py" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/boredcharts"] |
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# boredcharts example app | ||
# bored-charts example app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[project] | ||
name = "bored-charts-example" | ||
version = "0.1.0" | ||
description = "Add your description here" | ||
readme = "README.md" | ||
requires-python = ">=3.12" | ||
dependencies = ["bored-charts", "uvicorn>=0.30.5"] | ||
|
||
[project.scripts] | ||
bc-example = "bcexample.app:entrypoint" |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,5 @@ | ||
[project] | ||
name = "bored-charts" | ||
dynamic = ["version"] | ||
description = "Easy, minimal, PDF-able data reports with python and markdown." | ||
authors = [{ name = "Oliver Lambson", email = "[email protected]" }] | ||
dependencies = [ | ||
"fastapi>=0.112.0", | ||
"jinja2>=3.1.4", | ||
"uvicorn>=0.30.5", | ||
"plotly>=5.23.0", | ||
"pandas>=2.2.2", | ||
"markdown>=3.6", | ||
"markupsafe>=2.1.5", | ||
"matplotlib>=3.9.2", | ||
"mpld3>=0.5.10", | ||
] | ||
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">= 3.12" | ||
|
||
[project.urls] | ||
Repository = "https://github.com/oliverlambson/bored-charts.git" | ||
Issues = "https://github.com/oliverlambson/bored-charts/issues" | ||
|
||
[project.scripts] | ||
bc-example = "example.app:entrypoint" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.metadata] | ||
allow-direct-references = true | ||
|
||
[tool.hatch.version] | ||
path = "boredcharts/__init__.py" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["boredcharts"] | ||
[tool.uv.workspace] | ||
members = ["bored-charts", "example"] | ||
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
|
@@ -52,6 +15,9 @@ dev-dependencies = [ | |
"djlint>=1.34.1", | ||
] | ||
|
||
[tool.uv.sources] | ||
bored-charts = { workspace = true } | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "--doctest-modules" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.