Skip to content

Commit 8fb1037

Browse files
author
Ryan John Peck
committed
Update setup and README, version v0.0.5
1 parent ea40dcd commit 8fb1037

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Status](https://coveralls.io/repos/RyPeck/python-ipgroup/badge.png)](https://cov
66

77
## Usage
88

9-
~~~
9+
```
1010
>>> import ipgroup
1111
>>> from pprint import pprint
1212
>>> 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
3434
... "1.0.0.0/16",
3535
>>> total
3636
268435456
37-
~~~
37+
```

Diff for: ipgroup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from itertools import combinations
3131

3232

33-
__version__ = '0.0.4'
33+
__version__ = '0.0.5'
3434

3535

3636
class _BaseGroup:

Diff for: setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
from distutils.core import setup
17+
from setuptools import setup
1818
from os import path
1919

2020
import ipgroup
@@ -24,7 +24,6 @@
2424
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
2525
long_description = f.read()
2626

27-
2827
setup(
2928
name="ipgroup",
3029
maintainer="Ryan Peck",

0 commit comments

Comments
 (0)