1
0
Fork 0
This repository has been archived on 2024-12-30. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
pelican-alchemy/setup.py
2019-09-27 12:20:52 +03:00

19 lines
432 B
Python

from setuptools import setup
setup(
name='alchemy',
version='2.2',
description='A functional, clean, responsive Pelican theme',
url='https://github.com/nairobilug/pelican-alchemy',
author='Nairobi GNU/Linux Users Group',
license='MIT',
platforms='any',
entry_points={},
packages=['alchemy'],
include_package_data=True,
install_requires=[
'pelican',
],
zip_safe=False,
)