From 6835e0e39ee30fe191223ca6d16a5a4e7efd36d8 Mon Sep 17 00:00:00 2001 From: Lowell Alleman Date: Tue, 19 Jun 2018 22:35:25 -0400 Subject: [PATCH] Minor packaging cleanups & Bump version 0.16 - Bumped version to 0.16 - Added README.rst to the content of the python package (to appear on PyPI) - Fixed dead homepage link (now using current GitHub URL) --- README.rst | 4 ++++ setup.py | 4 ++-- src/ifcfg/__init__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 88220c4..403de65 100644 --- a/README.rst +++ b/README.rst @@ -79,7 +79,11 @@ following: Release notes ------------- +0.16 +____ + * Support for multiple IPv4 addresses in the new 'inet4' field +* Packaging cleanup 0.15 ____ diff --git a/setup.py b/setup.py index afe30c6..9bddf82 100644 --- a/setup.py +++ b/setup.py @@ -12,11 +12,11 @@ name='ifcfg', version=ifcfg.__version__, description="Python Ifconfig Wrapper for Unix/Linux/MacOSX", - long_description="Python Ifconfig Wrapper for Unix/Linux/MacOSX", + long_description=open("README.rst").read(), keywords='', author='Original author: BJ Dierkes', author_email='info@learningequality.org', - url='https://github.com/learningequality/python-ifcfg', + url='https://github.com/ftao/python-ifcfg', license='BSD', packages=find_packages('src'), package_dir={'': 'src'}, diff --git a/src/ifcfg/__init__.py b/src/ifcfg/__init__.py index cdb054a..1703ca1 100644 --- a/src/ifcfg/__init__.py +++ b/src/ifcfg/__init__.py @@ -6,7 +6,7 @@ from . import tools from . import parser -__version__ = "0.15" +__version__ = "0.16" Log = tools.minimal_logger(__name__)