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]
current_version = 0.2.26
current_version = 0.2.27
commit = True
tag = True

View file

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