From 03646d1e891271339ca256fadd15eaa8ac678911 Mon Sep 17 00:00:00 2001 From: Elizabeth Date: Mon, 2 Jun 2025 15:54:32 -0700 Subject: Make it a python package --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..406920c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[project] +name = "dots" +version = "0.1.0" +description = "my dotfiles manager with jinja2 templating and gnu stow integration" +authors = [{ name = "emprespresso" }] +readme = "README.md" +requires-python = ">=3.8" +dependencies = [ + "jinja2", +] + +[project.scripts] +dots = "dots_manager.cli:main" + +[tool.setuptools] +packages = ["dots_manager"] + +[build-system] +requires = ["setuptools>=61", "wheel"] +build-backend = "setuptools.build_meta" -- cgit v1.2.3-70-g09d2