25 lines
485 B
TOML
25 lines
485 B
TOML
[project]
|
|
name = "pyxforms"
|
|
version = "0.3.0"
|
|
description = "A Python binding for XForms"
|
|
authors = [
|
|
{ name = "Roberto Alsina", email = "roberto.alsina@gmail.com" }
|
|
]
|
|
dependencies = []
|
|
readme = "README.md"
|
|
requires-python = ">= 3.8"
|
|
|
|
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.rye]
|
|
managed = true
|
|
dev-dependencies = []
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/pyxforms"]
|