This commit is contained in:
emdee@spm.plastiras.org 2024-02-05 08:14:23 +00:00
parent 9c97bb9acb
commit 17f6264c18
7 changed files with 102 additions and 48 deletions

View file

@ -17,19 +17,15 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = ["version", "readme", ] # cannot be dynamic ['license']
dependencies = [
# 'qasync >= 0.27.1',
'cryptography >= 41.0.7',
'rsa >= 4.9',
'stem >= 1.8.2']
dynamic = ["version", "readme", "dependencies"] # cannot be dynamic ['license']
[project.scripts
[project.scripts]
exclude_badExits = "exclude_badExits.exclude_badExits:iMain"
[tool.setuptools.dynamic]
version = {attr = "exclude_badExits.__version__"}
readme = {file = ["README.md"]}
dependencies = {file = ["requirements.txt"]}
[project.license]
file = "LICENSE.md"
@ -42,8 +38,6 @@ requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
# Either or both of these don't work
#[tool.setuptools]
#packages = ["exclude_badExits"]
[tool.setuptools]
packages = ["exclude_badExits"]
#[tool.setuptools.packages.find]
#include = ["src"]