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:
parent
ea0089ee8c
commit
5a6349a193
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
@ -0,0 +1 @@
|
||||
recursive-include tornado_gallery/static *.thtml *.css *.js *.png
|
21
setup.py
Normal file
21
setup.py
Normal 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',
|
||||
],
|
||||
)
|
11
tornado_gallery/__init__.py
Normal file
11
tornado_gallery/__init__.py
Normal 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'
|
Loading…
Reference in New Issue
Block a user