33 lines
846 B
TOML
33 lines
846 B
TOML
[project]
|
|
name = "sp-hydra-veil-core"
|
|
version = "1.0.0"
|
|
authors = [
|
|
{ name = "Simplified Privacy" },
|
|
]
|
|
description = "A library that exposes core logic to higher-level components."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: POSIX :: Linux",
|
|
]
|
|
dependencies = [
|
|
"dataclasses-json ~= 0.6.4",
|
|
"marshmallow ~= 3.21.1",
|
|
"psutil ~= 5.9.8",
|
|
"pysocks ~= 1.7.1",
|
|
"python-dateutil ~= 2.9.0.post0",
|
|
"pytz ~= 2024.1",
|
|
"requests ~= 2.32.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core"
|
|
Issues = "https://git.simplifiedprivacy.is/codeking/sp-hydra-veil-core/issues"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["core"]
|