Minor changes

This commit is contained in:
2025-10-11 22:58:33 +03:00
parent a2c6853d9d
commit 5bc07bcbb8
4 changed files with 8 additions and 6 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
src/config_manager/__pycache__/basic_application.cpython-312.pyc src/config_manager/__pycache__/basic_application.cpython-312.pyc
venv/

View File

@@ -1,14 +1,14 @@
[metadata] [metadata]
name = basic_application name = config_manager
version = 1.0.0 version = 1.0.0
author = Aleksei Zosimov author = Aleksei Zosimov
author_email = lesha.spb@gmail.com author_email = lesha.spb@gmail.com
description = Basic application with configuration and logging features. description = Base application with configuration and logging features.
long_description = file: README.md long_description = file: README.md
long_description_content_type = text/markdown long_description_content_type = text/markdown
url = https://git.lesha.spb.ru/alex/basic_application/src/branch/master url = https://git.lesha.spb.ru/alex/config_manager
project_urls = project_urls =
Bug Tracker = https://git.lesha.spb.ru/alex/basic_application/issues Bug Tracker = https://git.lesha.spb.ru/alex/config_manager/issues
classifiers = classifiers =
Programming Language :: Python :: 3 Programming Language :: Python :: 3
License :: OSI Approved :: MIT License License :: OSI Approved :: MIT License
@@ -18,7 +18,7 @@ classifiers =
package_dir = package_dir =
= src = src
packages = find: packages = find:
python_requires = >=3.6 python_requires = >=3.10
[options.packages.find] [options.packages.find]
where = src where = src

View File

@@ -0,0 +1 @@
from config_manager.config_manager import ConfigManager

View File

@@ -1,6 +1,6 @@
import asyncio import asyncio
import json import json
import yaml # pip install pyyaml import yaml
import logging import logging
import logging.config import logging.config
from typing import Any from typing import Any