diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a125872 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include tornado_gallery/static *.thtml *.css *.js *.png diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f851626 --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +#!/usr/bin/python +from setuptools import setup +from tornado_gallery import __version__ + +setup (name='tornado_gallery', + version=__version__, + install_requires = [ + 'tornado', + 'pillow', + 'filemagic', + ], + entry_points = { + 'console_scripts': [ + 'tornado-gallery=tornado_gallery.server:main', + ] + }, + packages = [ + 'tornado_gallery', + 'tornado_gallery.static', + ], +) diff --git a/tornado_gallery/__init__.py b/tornado_gallery/__init__.py new file mode 100644 index 0000000..f92cbd9 --- /dev/null +++ b/tornado_gallery/__init__.py @@ -0,0 +1,11 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# vim: set ts=4 sts=4 et tw=78 sw=4 si: + +__author__ = 'Stuart Longland' +__copyright__ = 'Copyright 2018, Stuart Longland' +__credits__ = ['Stuart Longland'] +__license__ = 'BSD' +__version__ = '0.0.1' +__maintainer__ = 'Stuart Longland' +__email__ = 'me@vk4msl.id.au'