exclude_badExits/pyproject.toml

44 lines
1.4 KiB
TOML
Raw Normal View History

2024-01-14 00:02:48 +01:00
[project]
name = "exclude_badExits"
2024-01-15 12:09:20 +01:00
description = "Set the ExcludeNodes or ExcludeExitNodes setting of a running Tor."
2024-01-14 00:02:48 +01:00
authors = [{ name = "emdee", email = "emdee@spm.plastiras.org" } ]
requires-python = ">=3.6"
2024-01-15 12:09:20 +01:00
keywords = ["tor", "python3", "bad exits"]
2024-01-14 00:02:48 +01:00
classifiers = [
"License :: OSI Approved",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
2024-02-05 09:14:23 +01:00
dynamic = ["version", "readme", "dependencies"] # cannot be dynamic ['license']
2024-01-14 00:02:48 +01:00
2024-02-05 09:14:23 +01:00
[project.scripts]
2024-02-24 08:32:50 +01:00
exclude_badExits = "exclude_badExits.__main__:iMain"
2024-01-16 15:54:24 +01:00
2024-01-14 00:02:48 +01:00
[tool.setuptools.dynamic]
version = {attr = "exclude_badExits.__version__"}
readme = {file = ["README.md"]}
2024-02-05 09:14:23 +01:00
dependencies = {file = ["requirements.txt"]}
2024-01-14 00:02:48 +01:00
[project.license]
file = "LICENSE.md"
[project.urls]
repository = "https://git.plastiras.org/emdee/exclude_badExits"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
2024-01-15 12:09:20 +01:00
# Either or both of these don't work
2024-02-05 09:14:23 +01:00
[tool.setuptools]
packages = ["exclude_badExits"]
2024-01-14 00:02:48 +01:00