Skip to content

Commit e98fa26

Browse files
committed
Update Project Description
1 parent b8df7fd commit e98fa26

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Diff for: README.md

-2
Original file line numberDiff line numberDiff 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

Diff for: setup.py

+8
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,16 @@
1515
# limitations under the License.
1616

1717
from distutils.core import setup
18+
from os import path
1819

1920
import 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+
2228
setup(
2329
name="ipgroup",
2430
maintainer="Ryan Peck",
@@ -46,4 +52,6 @@
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
)

0 commit comments

Comments
 (0)