Compare commits

...

4 Commits

Author SHA1 Message Date
gd
57d6d2b32b add version 1.0.2 2021-12-23 21:46:20 +03:00
gd
0e277fcd66 fix syntax and update version 2021-12-23 21:38:03 +03:00
gd
f9cd4c3968 update version 2021-12-23 21:31:15 +03:00
gd
9ff57918dd update setup 2021-12-23 21:22:42 +03:00
4 changed files with 20 additions and 18 deletions

Binary file not shown.

View File

@ -4,9 +4,11 @@ title: Downloads
# Downloads # Downloads
**Pēji 1.0** **Pēji 1.0.2** [2021.12.23]
2021.04.12 - Source code: [Peji-1.0.2.tar.gz](Peji-1.0.2.tar.gz)
**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 __version__ = '1.0.2'
import os import os
import re import re

View File

@ -5,26 +5,26 @@ 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', version = '1.0.2',
author='gd', 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>=7.1.2', 'click',
'markdown>=3.3.4', 'markdown',
'Jinja2>=2.11.3', 'Jinja2',
'Pygments>=2.8.1', 'Pygments',
'PyYAML>=5.4.1' 'PyYAML'
], ],
entry_points = { entry_points = {
'console_scripts': [ 'console_scripts': [