34 lines
942 B
TOML
34 lines
942 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.9"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Operating System :: Microsoft :: Windows",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
|
|
[project.urls]
|
|
Repository = "https://gitea.docker.antior.cn/antior/dlp-io"
|
|
|
|
[tool.setuptools]
|
|
packages = ["dlp_io"]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "dlp_io.__version__"}
|
|
|
|
[tool.setuptools.package-data]
|
|
dlp_io = ["py.typed"]
|