diff --git a/commec/setup.py b/commec/setup.py index e4d0b42..b85cc9e 100644 --- a/commec/setup.py +++ b/commec/setup.py @@ -175,7 +175,7 @@ def check_directory_is_writable(self, input_directory: str) -> bool: # Handily, all sorts of special characters are identified with a %XX, within posix, and are replaced # by similar characters during mkdir, whilst technically legal, lets recommend against cursed dir names. if '%' in path.as_posix(): - print("Please avoid using special characters (\"|\}{\":?><*&\" etc) in filepath names.") + print("Please avoid using special characters (\"|}{\":?><*&\" etc) in filepath names.") return False # If the path doesn't exist, the best way to know if user input is valid, is to try make it. diff --git a/pyproject.toml b/pyproject.toml index 632cada..0b79d5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "commec" -version = '0.1.0' +version = '0.2.0' # This is not a pure python project; dependencies are managed through environment.yml authors = [ { name = "Nicole Wheeler" }, @@ -35,4 +35,4 @@ Repository = "https://github.com/ibbis-screening/common-mechanism.git" "commec" = "commec.cli:main" [tool.setuptools] -packages = { find = { "include" = ["commec"] } } +packages = { find = { "include" = ["commec", "commec.*"] } }