Skip to content

Commit

Permalink
fix: add __version__ and adjust Python min ver
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Czarnecki committed Oct 30, 2021
1 parent 2c2a4b0 commit d745b57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions resourcerer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
__version__ = "1.0.0"

from .get_from_onedrive import * # noqa:F401,F403
from .send_to_onedrive import * # noqa:F401,F403
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit d745b57

Please sign in to comment.