27 lines
821 B
TOML
27 lines
821 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "dlp-io"
|
|
dynamic = ["version"]
|
|
description = "io-compatible file reads through an approved Python helper on Windows DLP hosts"
|
|
readme = "docs/DLP_IO_LIBRARY.md"
|
|
requires-python = ">=3.10"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"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",
|
|
]
|
|
|
|
[project.urls]
|
|
Repository = "https://gitea.docker.antior.cn/antior/dlp-io"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "dlp_io.__version__"}
|