File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Status](https://coveralls.io/repos/RyPeck/python-ipgroup/badge.png)](https://cov
6
6
7
7
## Usage
8
8
9
- ~~~
9
+ ```
10
10
>>> import ipgroup
11
11
>>> from pprint import pprint
12
12
>>> 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
34
34
... "1.0.0.0/16",
35
35
>>> total
36
36
268435456
37
- ~~~
37
+ ```
Original file line number Diff line number Diff line change 30
30
from itertools import combinations
31
31
32
32
33
- __version__ = '0.0.4 '
33
+ __version__ = '0.0.5 '
34
34
35
35
36
36
class _BaseGroup :
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
- from distutils . core import setup
17
+ from setuptools import setup
18
18
from os import path
19
19
20
20
import ipgroup
24
24
with open (path .join (this_directory , "README.md" ), encoding = "utf-8" ) as f :
25
25
long_description = f .read ()
26
26
27
-
28
27
setup (
29
28
name = "ipgroup" ,
30
29
maintainer = "Ryan Peck" ,
You can’t perform that action at this time.
0 commit comments