add hurry.filesize, add gitignore to ignore pyc files

This commit is contained in:
Kilian Valkhof 2010-02-02 15:02:20 +01:00
parent 9d126924e7
commit 187f3e616e
6 changed files with 177 additions and 0 deletions

7
hurry/__init__.py Normal file
View file

@ -0,0 +1,7 @@
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)