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