You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.4 KiB
TOML

4 months ago
[project]
name = "exclude_badExits"
4 months ago
description = "Set the ExcludeNodes or ExcludeExitNodes setting of a running Tor."
4 months ago
authors = [{ name = "emdee", email = "emdee@spm.plastiras.org" } ]
requires-python = ">=3.6"
4 months ago
keywords = ["tor", "python3", "bad exits"]
4 months ago
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",
]
4 months ago
dynamic = ["version", "readme", "dependencies"] # cannot be dynamic ['license']
4 months ago
4 months ago
[project.scripts]
3 months ago
exclude_badExits = "exclude_badExits.__main__:iMain"
4 months ago
4 months ago
[tool.setuptools.dynamic]
version = {attr = "exclude_badExits.__version__"}
readme = {file = ["README.md"]}
4 months ago
dependencies = {file = ["requirements.txt"]}
4 months ago
[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"
4 months ago
# Either or both of these don't work
4 months ago
[tool.setuptools]
packages = ["exclude_badExits"]
4 months ago