Skip to content
Snippets Groups Projects
Commit deecdc13 authored by Nikos Roussos's avatar Nikos Roussos
Browse files

Package monopati

parent 69d25c3d
No related branches found
No related tags found
No related merge requests found
*.pyc
*.egg-info
dist/
include LICENSE *.md *.yml *.ico *.txt
recursive-include pages *
recursive-include posts *
recursive-include static *
recursive-include templates *
setup.py 0 → 100644
from setuptools import find_packages, setup
setup(
name='monopati',
packages=find_packages(),
version='0.1.1',
author='Nikos Roussos',
author_email='nikos@roussos.cc',
url='https://github.com/comzeradd/monopati/',
description='a minimalistic static content generator',
include_package_data=True,
zip_safe=False,
license='LICENSE',
install_requires=[
'Jinja2',
'Markdown',
'PyYAML'
],
scripts=['monopati.py'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: Site Management',
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment