From 1f07247e9b242163cfd57ea8d45f990cb7d8fc63 Mon Sep 17 00:00:00 2001 From: Walter Boring Date: Thu, 26 Feb 2026 15:35:49 -0500 Subject: [PATCH] Remove redundant config files and fix oslo.config dependency --- pyproject.toml | 2 +- requirements.txt | 2 -- setup.cfg | 40 ---------------------------------------- 3 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 requirements.txt delete mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index 0adeac5..14c6e48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", ] dependencies = [ - "oslo-config", + "oslo.config", "yfinance", ] diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 0c442bd..0000000 --- a/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -pbr -yfinance diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 0997551..0000000 --- a/setup.cfg +++ /dev/null @@ -1,40 +0,0 @@ -[metadata] -name = aprsd_stock_plugin -long_description = file: README.md -long_description_content_type = text/markdown -author = Walter A. Boring IV -author_email = waboring@hemna.com -license = Apache-2.0 -license_files = LICENSE -classifiers = - License :: OSI Approved :: Apache Software License -classifier = - Topic :: Communications :: Ham Radio - Operating System :: POSIX :: Linux - Programming Language :: Python - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 - Programming Language :: Python :: 3.9 -description_file = - README.md -summary = Ham Radio APRSD Plugin for fetching stock quotes - -[global] -setup-hooks = - pbr.hooks.setup_hook - -[files] -packages = - aprsd_stock_plugin - -[build_sphinx] -source-dir = doc/source -build-dir = doc/build -all_files = 1 - -[upload_sphinx] -upload-dir = doc/build/html - -[mypy] -ignore_missing_imports = True -strict = True