2024-03-29 21:48:06 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools", "wheel"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "userconfig"
|
2024-04-01 10:55:17 +02:00
|
|
|
version = "2.0"
|
2024-03-29 21:48:06 +01:00
|
|
|
authors = [ {name = "Marcus Stoegbauer", email = "marcus@grmpf.org"} ]
|
|
|
|
maintainers = [ {name = "Marcus Stoegbauer", email = "marcus@grmpf.org"} ]
|
|
|
|
description = "Generate config files for user home"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
userconfig = "cli:main"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = [ "userconfig", "cli" ]
|
2024-03-30 09:18:53 +01:00
|
|
|
|
|
|
|
[tool.setuptools.data-files]
|
|
|
|
"etc" = [ "userconfig2.conf" ]
|