Skip to content

Commit

Permalink
Seperating the classes from the tool. Moved everything in "if __name_…
Browse files Browse the repository at this point in the history
…_ =='__main__'" to /scripts/webkit2png. I updated the setup.py to reflect this and took care of moving dependancies around. I also had to make logger an attribute of WebkitRenderer.
  • Loading branch information
btoews committed May 1, 2012
1 parent 690c78c commit 8f5df55
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 506 deletions.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -14,8 +14,8 @@
long_description = long_description,
author = 'Roland Tapken',
author_email = 'roland at dau-sicher de',
packages = find_packages(),
package_dir = {'webkit2png': 'webkit2png'},
packages = ['webkit2png'],
package_dir = [],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
Expand All @@ -28,5 +28,6 @@
'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture',
'Topic :: Utilities'
],
scripts = ['scripts/webkit2png'],
)

3 changes: 3 additions & 0 deletions webkit2png.egg-info/SOURCES.txt
@@ -1,4 +1,7 @@
setup.py
scripts/webkit2png
webkit2png/__init__.py
webkit2png/webkit2png.py
webkit2png.egg-info/PKG-INFO
webkit2png.egg-info/SOURCES.txt
webkit2png.egg-info/dependency_links.txt
Expand Down
2 changes: 1 addition & 1 deletion webkit2png.egg-info/top_level.txt
@@ -1 +1 @@

webkit2png

0 comments on commit 8f5df55

Please sign in to comment.