From 8713ce3257ed5fd6461a8e20c58fa09f4d29cb1f Mon Sep 17 00:00:00 2001 From: Mikel Ward Date: Fri, 15 Sep 2017 11:46:38 -0700 Subject: Rename README.md to README so it can be shared between setup.py and github. --- README | 4 ++++ README.md | 4 ---- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 README delete mode 100644 README.md diff --git a/README b/README new file mode 100644 index 0000000..58bb654 --- /dev/null +++ b/README @@ -0,0 +1,4 @@ +ipaddr.py is a library for working with IP addresses, both IPv4 and IPv6. + +It has been superseded by ipaddress from the Python 3 standard library, and its +Python 2 backport. diff --git a/README.md b/README.md deleted file mode 100644 index 58bb654..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -ipaddr.py is a library for working with IP addresses, both IPv4 and IPv6. - -It has been superseded by ipaddress from the Python 3 standard library, and its -Python 2 backport. diff --git a/setup.py b/setup.py index 24ef4cf..698c08d 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import ipaddr setup(name='ipaddr', description="Google's IP address manipulation library", - long_description=open('README.md').read(), + long_description=open('README').read(), maintainer='Google', maintainer_email='ipaddr-py-dev@googlegroups.com', version=ipaddr.__version__, -- cgit v1.2.1