update
This commit is contained in:
parent
3b623d4fdf
commit
383764fca2
9 changed files with 306 additions and 37 deletions
|
|
@ -1,32 +1,33 @@
|
|||
[project]
|
||||
name = "phantompy"
|
||||
description = "Set the ExcludeNodes or ExcludeExitNodes setting of a running Tor."
|
||||
description = "A simple replacement for phantomjs using PyQt"
|
||||
authors = [{ name = "emdee", email = "emdee@spm.plastiras.org" } ]
|
||||
requires-python = ">=3.6"
|
||||
keywords = ["tor", "python3", "bad exits"]
|
||||
requires-python = ">=3.8"
|
||||
dependencies = [
|
||||
'qasync',
|
||||
# PyQt5 PyQt6
|
||||
]
|
||||
keywords = ["phantomjs", "python3", "qasync"]
|
||||
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",
|
||||
"Classifier: Topic :: Software Development :: Libraries :: Python Modules",
|
||||
]
|
||||
#
|
||||
dynamic = ["version", "readme", ] # cannot be dynamic ['license']
|
||||
scripts = { phantompy = "phantompy.phantompy:iMain" }
|
||||
dependencies = ['qasync', 'PyQt5']
|
||||
|
||||
[tool.setuptools.dynamic]
|
||||
version = {attr = "phantompy.__version__"}
|
||||
readme = {file = ["README.md"]}
|
||||
[project.scripts]
|
||||
phantompy = "phantompy.qasync_phantompy:iMain"
|
||||
|
||||
[project.license]
|
||||
file = "LICENSE.md"
|
||||
#[project.license]
|
||||
#file = "LICENSE.md"
|
||||
|
||||
[project.urls]
|
||||
repository = "https://git.plastiras.org/emdee/phantompy"
|
||||
|
|
@ -35,9 +36,12 @@ repository = "https://git.plastiras.org/emdee/phantompy"
|
|||
requires = ["setuptools >= 61.0"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
# Either or both of these don't work
|
||||
#[tool.setuptools]
|
||||
#packages = ["phantompy"]
|
||||
[tool.setuptools.dynamic]
|
||||
version = {attr = "phantompy.__version__"}
|
||||
readme = {file = ["README.md"]}
|
||||
|
||||
[tool.setuptools]
|
||||
packages = ["phantompy"]
|
||||
|
||||
#[tool.setuptools.packages.find]
|
||||
#include = ["src"]
|
||||
#where = "src"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue