forked from adamn/python-webkit2png
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·33 lines (29 loc) · 1.04 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
25
26
27
28
29
30
31
32
from setuptools import setup, find_packages
version = '0.8.2'
description = "Takes snapshot of webpages using Webkit and Qt4"
long_description = description
setup(
name = "webkit2png",
version = version,
url = 'http://github.com/AdamN/python-webkit2png',
license = 'LGPL',
description = description,
long_description = long_description,
author = 'Roland Tapken',
author_email = 'roland at dau-sicher de',
packages = find_packages(),
package_dir = {'webkit2png': 'webkit2png'},
py_modules = ['webkit2png'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Bug Tracking',
'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture',
'Topic :: Utilities'
],
)