20 lines
493 B
TOML
20 lines
493 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "userconfig"
|
|
version = "2.0"
|
|
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" ]
|
|
|
|
[tool.setuptools.data-files]
|
|
"etc" = [ "userconfig2.conf" ]
|