21 lines
499 B
TOML
21 lines
499 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pypretix_device"
|
|
dynamic = ["version"]
|
|
authors = [
|
|
{ name="Toothwitch", email="witch@toothwit.ch" },
|
|
]
|
|
description = "A minimal API client for pretix device authentication and ticket scanning"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"requests>=2.28",
|
|
"certifi",
|
|
]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
] |