Skip to content

Commit

Permalink
fix module not found
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesZBL committed Feb 25, 2021
1 parent 6749f61 commit 0d0d96e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jencrypt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
app
"""
__version__ = "2.0.15"
__version__ = "2.0.16"
2 changes: 1 addition & 1 deletion jencrypt/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def print_banner():
_/ | \___| |_| |_| \___| |_| \__, | | .__/ \__|
|__/ |___/ |_|
v2.0.15
v2.0.16
'''
)

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["flit_core >=2,<4", "watchdog 2.0.2"]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"

[tool.flit.metadata]
Expand All @@ -9,6 +9,7 @@ author-email = "[email protected]"
home-page = "https://github.com/JamesZBL/jencrypt"
classifiers = ["License :: OSI Approved :: Apache Software License"]
description-file = "README.md"
requires = ["watchdog"]

[tool.flit.scripts]
jencrypt = "jencrypt.bootstrap:main"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
README = (HERE / "README.md").read_text()

setup(name='jencrypt',
version='2.0.15',
version='2.0.16',
description='File and directory encryption tool with automatically mounting data volumes',
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 0d0d96e

Please sign in to comment.