2024-01-14 01:08:22 +01:00
|
|
|
[project]
|
|
|
|
name = "phantompy"
|
2024-02-02 09:31:47 +01:00
|
|
|
description = "A simple replacement for phantomjs using PyQt"
|
2024-01-14 01:08:22 +01:00
|
|
|
authors = [{ name = "emdee", email = "emdee@spm.plastiras.org" } ]
|
2024-02-02 09:31:47 +01:00
|
|
|
requires-python = ">=3.8"
|
|
|
|
dependencies = [
|
|
|
|
'qasync',
|
|
|
|
# PyQt5 PyQt6
|
|
|
|
]
|
|
|
|
keywords = ["phantomjs", "python3", "qasync"]
|
2024-01-14 01:08:22 +01:00
|
|
|
classifiers = [
|
|
|
|
"License :: OSI Approved",
|
|
|
|
"Operating System :: POSIX :: BSD :: FreeBSD",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"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-02 09:31:47 +01:00
|
|
|
"Classifier: Topic :: Software Development :: Libraries :: Python Modules",
|
2024-01-14 01:08:22 +01:00
|
|
|
]
|
2024-02-02 09:31:47 +01:00
|
|
|
#
|
2024-01-14 01:08:22 +01:00
|
|
|
dynamic = ["version", "readme", ] # cannot be dynamic ['license']
|
|
|
|
|
2024-02-02 09:31:47 +01:00
|
|
|
[project.scripts]
|
|
|
|
phantompy = "phantompy.qasync_phantompy:iMain"
|
2024-01-14 01:08:22 +01:00
|
|
|
|
2024-02-02 09:31:47 +01:00
|
|
|
#[project.license]
|
|
|
|
#file = "LICENSE.md"
|
2024-01-14 01:08:22 +01:00
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
repository = "https://git.plastiras.org/emdee/phantompy"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools >= 61.0"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
2024-02-02 09:31:47 +01:00
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = {attr = "phantompy.__version__"}
|
|
|
|
readme = {file = ["README.md"]}
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
packages = ["phantompy"]
|
2024-01-14 01:08:22 +01:00
|
|
|
|
|
|
|
#[tool.setuptools.packages.find]
|
2024-02-02 09:31:47 +01:00
|
|
|
#where = "src"
|