Added setup.py stub.

This commit is contained in:
Johannes Findeisen 2022-11-28 13:32:41 +01:00
commit 5e97b9de3b

13
setup.py Normal file
View file

@ -0,0 +1,13 @@
from setuptools import setup
setup(
name='fgg',
version='0.1.4',
packages=[''],
url='https://hanez.org/project/fgg/',
license='MIT',
author='Johannes Findeisen',
author_email='you@hanez.org',
description='A free gallery generator for static site generators like Hugo, Jekyll, Nikola '
'etc. using Flickr as data source.'
)