From 0d0d96e793e2583989c1168ad49f29a3bcee0d42 Mon Sep 17 00:00:00 2001 From: JamesZBL Date: Thu, 25 Feb 2021 11:26:33 +0800 Subject: [PATCH] fix module not found --- jencrypt/__init__.py | 2 +- jencrypt/bootstrap.py | 2 +- pyproject.toml | 3 ++- setup.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/jencrypt/__init__.py b/jencrypt/__init__.py index 789bc97..47979c4 100644 --- a/jencrypt/__init__.py +++ b/jencrypt/__init__.py @@ -1,4 +1,4 @@ """ app """ -__version__ = "2.0.15" +__version__ = "2.0.16" diff --git a/jencrypt/bootstrap.py b/jencrypt/bootstrap.py index dbaf51a..d570458 100755 --- a/jencrypt/bootstrap.py +++ b/jencrypt/bootstrap.py @@ -103,7 +103,7 @@ def print_banner(): _/ | \___| |_| |_| \___| |_| \__, | | .__/ \__| |__/ |___/ |_| - v2.0.15 + v2.0.16 ''' ) diff --git a/pyproject.toml b/pyproject.toml index f9811e6..e32fb78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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] @@ -9,6 +9,7 @@ author-email = "zhengbaole@gmail.com" 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" diff --git a/setup.py b/setup.py index 982f102..40b06e3 100644 --- a/setup.py +++ b/setup.py @@ -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",