29 lines
750 B
TOML
29 lines
750 B
TOML
[project]
|
|
name = "lab-subrosa"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [{ name = "Chris Proctor", email = "chris@chrisproctor.net" }]
|
|
requires-python = ">=3.10,<4.0"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3.14",
|
|
]
|
|
dependencies = [
|
|
"django-banjo (>=0.9.1,<0.10.0)",
|
|
"cryptography (>=44.0.0,<45.0.0)",
|
|
"requests (>=2.32.3,<3.0.0)",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.10.0,<0.11.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[tool.uv]
|
|
package = false
|