File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ Status](https://coveralls.io/repos/RyPeck/python-ipgroup/badge.png)](https://cov
6
6
7
7
## Usage
8
8
9
- Script requires the [ ipaddress manipulation library] ( https://docs.python.org/3/library/ipaddress ) which is in the standard libray.
10
-
11
9
~~~
12
10
>>> import ipgroup
13
11
>>> from pprint import pprint
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
17
17
from distutils .core import setup
18
+ from os import path
18
19
19
20
import ipgroup
20
21
21
22
23
+ this_directory = path .abspath (path .dirname (__file__ ))
24
+ with open (path .join (this_directory , "README.md" ), encoding = "utf-8" ) as f :
25
+ long_description = f .read ()
26
+
27
+
22
28
setup (
23
29
name = "ipgroup" ,
24
30
maintainer = "Ryan Peck" ,
46
52
],
47
53
description = "Functions to gather info on a group of IPv4 or IPv6 Networks" ,
48
54
py_modules = ["ipgroup" ],
55
+ long_description = long_description ,
56
+ long_description_content_type = "text/markdown" ,
49
57
)
You can’t perform that action at this time.
0 commit comments