summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml20
1 files changed, 20 insertions, 0 deletions
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"