1
0
mirror of https://github.com/sjlongland/tornado-gallery.git synced 2025-09-13 08:42:23 +10:00

Add distribution files.

This commit is contained in:
Stuart Longland 2018-04-18 14:38:24 +10:00
parent ea0089ee8c
commit 5a6349a193
Signed by: stuartl
GPG Key ID: 6AA32EFB18079BAA
3 changed files with 33 additions and 0 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
recursive-include tornado_gallery/static *.thtml *.css *.js *.png

21
setup.py Normal file
View File

@ -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',
],
)

View File

@ -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'