-
Notifications
You must be signed in to change notification settings - Fork 201
/
setup.py
executable file
·41 lines (36 loc) · 1.17 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
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '0.8.3'
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 = ['webkit2png'],
zip_safe=True,
include_package_data=True,
package_dir = [],
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'
],
entry_points = {
'console_scripts': [
'webkit2png = webkit2png.scripts:main',
]
},
)