confini

Parse and merge multiple ini files in python3
git clone git://git.defalsify.org/python-confini.git
Log | Files | Refs | README | LICENSE

commit 0f894ed3a3ad2800ae51ebda29a4bfd040bc9de5
parent ef7237e09e38d3564c818079c214410fe207ce19
Author: nolash <dev@holbrook.no>
Date:   Sat, 17 Oct 2020 20:56:36 +0200

Version bump, upload to pypi.org

Diffstat:
MCHANGELOG | 4++++
Msetup.py | 11+++++++++--
2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,3 +1,7 @@ +0.2.3 + - Published on pypi.org +0.2.2 + - (Skipped) 0.2.1 - Set logger name - Omit empty string environment variables diff --git a/setup.py b/setup.py @@ -1,12 +1,19 @@ from setuptools import setup +f = open('./README.md', 'r') +long_description = f.read() +f.close() + setup( name='confini', - version='0.2.1', + #version='0.2.1', + version='0.2.3', description='Parse, verify and merge all ini files in a single directory', author='Louis Holbrook', author_email='dev@holbrook.no', license='GPL3', + long_description=long_description, + long_description_content_type='text/markdown', install_requires=[ 'python-gnupg>=0.4.6,<0.5.0', ], @@ -16,5 +23,5 @@ setup( scripts = [ 'scripts/parse.py', ], - url='https://holbrook.no', + url='https://gitlab.com/nolash/python-confini', )