13 lines
372 B
Python
13 lines
372 B
Python
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.'
|
|
)
|