1[project]
2name = "xgit"
3version = "1.0.0"
4description = "Python static git page generator with auto-fetch (stagit-inspired)"
5readme = "README.md"
6requires-python = ">=3.10"
7license = { text = "BSD-2-Clause" }
8authors = [{ name = "polymath" }]
9dependencies = []
10
11[project.scripts]
12xgit = "xgit.cli:main"
13
14[project.urls]
15Homepage = "https://github.com/polymath/xgit"
16
17[build-system]
18requires = ["setuptools>=61"]
19build-backend = "setuptools.build_meta"
20
21[tool.setuptools.packages.find]
22where = ["."]
23include = ["xgit*"]
24
25[tool.setuptools.package-data]
26xgit = ["static/*"]