Compare commits
	
		
			4 Commits
		
	
	
		
			9aed2f4727
			...
			57d6d2b32b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 57d6d2b32b | |||
| 0e277fcd66 | |||
| f9cd4c3968 | |||
| 9ff57918dd | 
							
								
								
									
										
											BIN
										
									
								
								docs/pages/Peji-1.0.2.tar.gz
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								docs/pages/Peji-1.0.2.tar.gz
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -4,9 +4,11 @@ title: 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)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								peji.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								peji.py
									
									
									
									
									
								
							@@ -32,7 +32,7 @@
 | 
			
		||||
#
 | 
			
		||||
##########################################################################
 | 
			
		||||
 | 
			
		||||
__version__ = 1.0
 | 
			
		||||
__version__ = '1.0.2'
 | 
			
		||||
 | 
			
		||||
import os
 | 
			
		||||
import re
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										30
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										30
									
								
								setup.py
									
									
									
									
									
								
							@@ -5,26 +5,26 @@ with open("README.md", "r") as long_descr:
 | 
			
		||||
    long_description = long_descr.read()
 | 
			
		||||
 | 
			
		||||
setup(
 | 
			
		||||
    name='Peji',
 | 
			
		||||
    version='1.0',
 | 
			
		||||
    author='gd',
 | 
			
		||||
    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>=7.1.2',
 | 
			
		||||
        'markdown>=3.3.4',
 | 
			
		||||
        'Jinja2>=2.11.3',
 | 
			
		||||
        'Pygments>=2.8.1',
 | 
			
		||||
        'PyYAML>=5.4.1'
 | 
			
		||||
        'click',
 | 
			
		||||
        'markdown',
 | 
			
		||||
        'Jinja2',
 | 
			
		||||
        'Pygments',
 | 
			
		||||
        'PyYAML'
 | 
			
		||||
    ],
 | 
			
		||||
    entry_points = {
 | 
			
		||||
        'console_scripts': [
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user