diff --git a/archives.py b/archives.py index e0d05b4..3b7b140 100644 --- a/archives.py +++ b/archives.py @@ -15,7 +15,7 @@ from typing import Callable, Dict, Iterator, Iterable, List, Pattern, Set, Tuple, Union -__version__ = "0.4" +__version__ = "0.5" DEFAULT_EXCLUDES_LIST = [ r"\.eggs", r"\.git", diff --git a/setup.py b/setup.py index 605881c..7596b94 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages -REQUIRED = ["click>=7.0"] +REQUIRED = ["click>=7.0", "typed-ast>=1.4.0", "radon>=3.0.3"] LIBRARY = "archives" @@ -15,7 +15,7 @@ setup( name=LIBRARY, - version="0.4", + version="0.5", description=("a new way to do python code documentation"), long_description=LONG_DESCRIPTION, author="Jacobi Petrucciani",