peji/setup.py

35 lines
803 B
Python
Raw Normal View History

2021-04-12 01:45:44 +03:00
from setuptools import setup
with open("README.md", "r") as long_descr:
long_description = long_descr.read()
setup(
name='Peji',
2021-12-23 21:31:15 +03:00
version='1.0.1',
2021-12-23 21:22:42 +03:00
author='ge',
2021-04-12 01:45:44 +03:00
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'],
install_requires = [
2021-12-23 21:22:42 +03:00
'click',
'markdown',
'Jinja2',
'Pygments',
'PyYAML'
2021-04-12 01:45:44 +03:00
],
entry_points = {
'console_scripts': [
'peji = peji:cli'
]
}
)