fix syntax and update version
This commit is contained in:
parent
f9cd4c3968
commit
0e277fcd66
2
peji.py
2
peji.py
@ -32,7 +32,7 @@
|
|||||||
#
|
#
|
||||||
##########################################################################
|
##########################################################################
|
||||||
|
|
||||||
__version__ = 1.0.1
|
__version__ = '1.0.2'
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
20
setup.py
20
setup.py
@ -5,20 +5,20 @@ with open("README.md", "r") as long_descr:
|
|||||||
long_description = long_descr.read()
|
long_description = long_descr.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='Peji',
|
name = 'Peji',
|
||||||
version='1.0.1',
|
version = '1.0.2',
|
||||||
author='ge',
|
author = 'ge',
|
||||||
description='Static site generator.',
|
description = 'Static site generator.',
|
||||||
long_description=long_description,
|
long_description = long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type = "text/markdown",
|
||||||
url='https://peji.gch.icu/',
|
url = 'https://peji.gch.icu/',
|
||||||
classifiers=[
|
classifiers = [
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"License :: OSI Approved :: The Unlicense (Unlicense)",
|
"License :: OSI Approved :: The Unlicense (Unlicense)",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
],
|
],
|
||||||
python_requires='>=3.6',
|
python_requires = '>=3.6',
|
||||||
py_modules=['peji'],
|
py_modules = ['peji'],
|
||||||
install_requires = [
|
install_requires = [
|
||||||
'click',
|
'click',
|
||||||
'markdown',
|
'markdown',
|
||||||
|
Loading…
Reference in New Issue
Block a user