From a3efcc67738069299a0d62d0c4e8098a1f04303f Mon Sep 17 00:00:00 2001 From: Jacobi Petrucciani Date: Mon, 9 Sep 2019 19:13:02 -0400 Subject: [PATCH] attempting again to fix pip install --- archives.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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",