diff --git a/peji.py b/peji.py index e046bbf..479e1c0 100644 --- a/peji.py +++ b/peji.py @@ -32,7 +32,7 @@ # ########################################################################## -__version__ = 1.0.1 +__version__ = '1.0.2' import os import re diff --git a/setup.py b/setup.py index 7621c44..5e9faea 100644 --- a/setup.py +++ b/setup.py @@ -5,20 +5,20 @@ with open("README.md", "r") as long_descr: long_description = long_descr.read() setup( - name='Peji', - version='1.0.1', - author='ge', - description='Static site generator.', - long_description=long_description, - long_description_content_type="text/markdown", - url='https://peji.gch.icu/', - classifiers=[ + name = 'Peji', + version = '1.0.2', + author = 'ge', + description = 'Static site generator.', + long_description = long_description, + long_description_content_type = "text/markdown", + url = 'https://peji.gch.icu/', + classifiers = [ "Programming Language :: Python :: 3.9", "License :: OSI Approved :: The Unlicense (Unlicense)", "Operating System :: OS Independent", ], - python_requires='>=3.6', - py_modules=['peji'], + python_requires = '>=3.6', + py_modules = ['peji'], install_requires = [ 'click', 'markdown',