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