From 8fb1037d886a52127e7231f051403396dcb4dc60 Mon Sep 17 00:00:00 2001 From: Ryan John Peck Date: Tue, 11 Jun 2019 14:13:48 -0400 Subject: [PATCH] Update setup and README, version v0.0.5 --- README.md | 4 ++-- ipgroup.py | 2 +- setup.py | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4d1703e..06069f8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Status](https://coveralls.io/repos/RyPeck/python-ipgroup/badge.png)](https://cov ## Usage -~~~ +``` >>> import ipgroup >>> from pprint import pprint >>> ips = ["129.21.3.17", "129.21.206.5", @@ -34,4 +34,4 @@ Status](https://coveralls.io/repos/RyPeck/python-ipgroup/badge.png)](https://cov ... "1.0.0.0/16", >>> total 268435456 -~~~ +``` diff --git a/ipgroup.py b/ipgroup.py index ecd57a9..a711c41 100644 --- a/ipgroup.py +++ b/ipgroup.py @@ -30,7 +30,7 @@ from itertools import combinations -__version__ = '0.0.4' +__version__ = '0.0.5' class _BaseGroup: diff --git a/setup.py b/setup.py index ff2c59b..6d3963d 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from distutils.core import setup +from setuptools import setup from os import path import ipgroup @@ -24,7 +24,6 @@ with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read() - setup( name="ipgroup", maintainer="Ryan Peck",