35 lines
740 B
TOML
35 lines
740 B
TOML
[build-system]
|
|
requires = ["setuptools>=69", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "govoplan-files"
|
|
version = "0.1.8"
|
|
description = "GovOPlaN files module with backend and WebUI integration."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = { file = "LICENSE" }
|
|
authors = [{ name = "GovOPlaN" }]
|
|
dependencies = [
|
|
"govoplan-core>=0.1.8",
|
|
"defusedxml>=0.7,<1",
|
|
"python-multipart>=0.0.31,<1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
s3 = [
|
|
"boto3>=1.34,<2",
|
|
]
|
|
smb = [
|
|
"smbprotocol>=1.13",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.setuptools.package-data]
|
|
govoplan_files = ["py.typed"]
|
|
|
|
[project.entry-points."govoplan.modules"]
|
|
files = "govoplan_files.backend.manifest:get_manifest"
|