Compare commits

..

No commits in common. "57d6d2b32b8871bdc9d35db549b0314ff6d2211b" and "9aed2f4727a65378fbfb37879cc471e0ba3a222e" have entirely different histories.

4 changed files with 18 additions and 20 deletions

Binary file not shown.

View File

@ -4,11 +4,9 @@ title: Downloads
# Downloads # Downloads
**Pēji 1.0.2** [2021.12.23] **Pēji 1.0**
- Source code: [Peji-1.0.2.tar.gz](Peji-1.0.2.tar.gz) 2021.04.12
**Pēji 1.0** [2021.04.12]
- Source code: [Peji-1.0.tar.gz](Peji-1.0.tar.gz) - Source code: [Peji-1.0.tar.gz](Peji-1.0.tar.gz)

View File

@ -32,7 +32,7 @@
# #
########################################################################## ##########################################################################
__version__ = '1.0.2' __version__ = 1.0
import os import os
import re import re

View File

@ -6,8 +6,8 @@ with open("README.md", "r") as long_descr:
setup( setup(
name='Peji', name='Peji',
version = '1.0.2', version='1.0',
author = 'ge', author='gd',
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",
@ -20,11 +20,11 @@ setup(
python_requires='>=3.6', python_requires='>=3.6',
py_modules=['peji'], py_modules=['peji'],
install_requires = [ install_requires = [
'click', 'click>=7.1.2',
'markdown', 'markdown>=3.3.4',
'Jinja2', 'Jinja2>=2.11.3',
'Pygments', 'Pygments>=2.8.1',
'PyYAML' 'PyYAML>=5.4.1'
], ],
entry_points = { entry_points = {
'console_scripts': [ 'console_scripts': [