25 lines
458 B
TOML
25 lines
458 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "fabric-nix-example"
|
|
version = "0.0.1"
|
|
requires-python = ">= 3.11"
|
|
authors = [
|
|
]
|
|
maintainers = [
|
|
]
|
|
description = "Fabric using Nix example."
|
|
readme = "README.md"
|
|
license = {file = "LICENSE"}
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.packages]
|
|
find = { namespaces = true }
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["*.css", "styles"]
|