Bumped to version 0.2.27

This commit is contained in:
Fabio Manganiello 2024-08-19 11:30:21 +02:00
parent e11c3b2688
commit cece2bee68
3 changed files with 21 additions and 21 deletions

View file

@ -1 +1 @@
__version__ = '0.2.26' __version__ = "0.2.27"

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.2.26 current_version = 0.2.27
commit = True commit = True
tag = True tag = True

View file

@ -5,38 +5,38 @@ from setuptools import setup, find_packages
def readfile(file): def readfile(file):
with open(file, 'r') as f: with open(file, "r") as f:
return f.read() return f.read()
setup( setup(
name='madblog', name="madblog",
version='0.2.26', version="0.2.27",
author='Fabio Manganiello', author="Fabio Manganiello",
author_email='info@fabiomanganiello.com', author_email="info@fabiomanganiello.com",
description='A minimal platform for Markdown-based blogs', description="A minimal platform for Markdown-based blogs",
license='MIT', license="MIT",
python_requires='>= 3.8', python_requires=">= 3.8",
keywords='blog markdown', keywords="blog markdown",
url='https://git.platypush.tech/blacklight/madblog', url="https://git.platypush.tech/blacklight/madblog",
packages=find_packages(include=['madblog']), packages=find_packages(include=["madblog"]),
include_package_data=True, include_package_data=True,
entry_points={ entry_points={
'console_scripts': [ "console_scripts": [
'madblog=madblog.cli:run', "madblog=madblog.cli:run",
], ],
}, },
long_description=readfile('README.md'), long_description=readfile("README.md"),
long_description_content_type='text/markdown', long_description_content_type="text/markdown",
classifiers=[ classifiers=[
"Topic :: Utilities", "Topic :: Utilities",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
], ],
install_requires=[ install_requires=[
'flask', "flask",
'markdown', "markdown",
'pygments', "pygments",
'pyyaml', "pyyaml",
], ],
) )