mirror of
https://github.com/sjlongland/tornado-gallery.git
synced 2025-09-13 16:43:16 +10:00
24 lines
557 B
Python
24 lines
557 B
Python
#!/usr/bin/python
|
|
from setuptools import setup
|
|
from tornado_gallery import __version__
|
|
|
|
setup (name='tornado_gallery',
|
|
version=__version__,
|
|
install_requires = [
|
|
'tornado',
|
|
'pillow',
|
|
'filemagic',
|
|
'cachefs',
|
|
],
|
|
entry_points = {
|
|
'console_scripts': [
|
|
'tornado-gallery=tornado_gallery.server:main',
|
|
]
|
|
},
|
|
packages = [
|
|
'tornado_gallery',
|
|
'tornado_gallery.static',
|
|
],
|
|
include_package_data=True
|
|
)
|