summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 406920c2876632dbf2c861d4992cb64d93bcc1ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"