peji/setup.py

35 lines
823 B
Python
Raw Permalink 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(
2021-12-23 21:38:03 +03:00
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 = [
2021-04-12 01:45:44 +03:00
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
],
2021-12-23 21:38:03 +03:00
python_requires = '>=3.6',
py_modules = ['peji'],
2021-04-12 01:45:44 +03:00
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'
]
}
)