File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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
66
77## Usage
88
9- Script requires the [ ipaddress manipulation library] ( https://docs.python.org/3/library/ipaddress ) which is in the standard libray.
10-
119~~~
1210>>> import ipgroup
1311>>> from pprint import pprint
Original file line number Diff line number Diff line change 1515# limitations under the License.
1616
1717from distutils .core import setup
18+ from os import path
1819
1920import ipgroup
2021
2122
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+
2228setup (
2329 name = "ipgroup" ,
2430 maintainer = "Ryan Peck" ,
4652 ],
4753 description = "Functions to gather info on a group of IPv4 or IPv6 Networks" ,
4854 py_modules = ["ipgroup" ],
55+ long_description = long_description ,
56+ long_description_content_type = "text/markdown" ,
4957)
You can’t perform that action at this time.
0 commit comments