diff --git a/README.md b/README.md index c04d970..006ac36 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ with ctx.single(80, 60, './example.png') as (fig,ax): ax.set_title('title') ``` -![Example Single Figure](./resource/example.png) +![Example Single Figure](https://raw.githubusercontent.com/ckckdud3/figctx/refs/heads/main/resource/example.png?token=GHSAT0AAAAAADNSDYSZZM74LRWVDDLNWGI62HYOFAA) ## Example2 (multi figure context) @@ -91,4 +91,4 @@ with ctx.multi(70, 150, 2, 1, [1], [1,2], './example2.png') as (fig, subfig): fig.suptitle('Suptitle') ``` -![Example Multi Figure](./resource/example2.png) \ No newline at end of file +![Example Multi Figure](https://raw.githubusercontent.com/ckckdud3/figctx/refs/heads/main/resource/example2.png?token=GHSAT0AAAAAADNSDYSYJ2KP4PNZLL2NCF2C2HYOFMQ) \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 4eb749c..b1df1fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,8 +14,15 @@ license = {text="MIT"} dependencies = ["matplotlib >=3.3"] +[project.urls] +"Homepage" = "https://github.com/ckckdud3/figctx" + +[tool.setuptools] +include-package-data = true + [tool.setuptools.packages.find] where = ["src"] +include = ["figctx*"] [project.optional-dependencies]