From d745b579b651055f97601924cf831af874f0c9b9 Mon Sep 17 00:00:00 2001 From: Krzysztof Czarnecki Date: Sat, 30 Oct 2021 23:12:00 +0200 Subject: [PATCH] fix: add `__version__` and adjust Python min ver --- resourcerer/__init__.py | 2 ++ setup.cfg | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/resourcerer/__init__.py b/resourcerer/__init__.py index 6815072..434c7d2 100644 --- a/resourcerer/__init__.py +++ b/resourcerer/__init__.py @@ -1,2 +1,4 @@ +__version__ = "1.0.0" + from .get_from_onedrive import * # noqa:F401,F403 from .send_to_onedrive import * # noqa:F401,F403 diff --git a/setup.cfg b/setup.cfg index ce545ab..c42e68a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,13 +14,13 @@ license = MIT classifiers = License :: OSI Approved :: MIT License Programming Language :: Python :: 3 - Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.7 [options] zip_safe = False include_package_data = True packages = find: -python_requires = >=3.10 +python_requires = >=3.7 install_requires = pyyaml