-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·24 lines (22 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(name='DeepZoomTools',
version='1.0.0',
description='Python tools for generating Deep Zoom images (DZI) and \
collections (DZC) for the use with Silverlight Deep Zoom, Seadragon Ajax, \
Seadragon Mobile and OpenZoom.',
author='Daniel Gasienica',
author_email='[email protected]',
download_url='https://github.com/openzoom/deepzoom.py/archives/0.9.4',
keywords='deepzoom seadragon dzi dzc seadragonajax seadragonmobile silverlightdeepzoom microsoft openzoom',
url='http://github.com/openzoom/deepzoom.py',
py_modules=['deepzoom'],
install_requires=['pillow', 'six'],
classifiers=['Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: Graphics Conversion'])