Metadata-Version: 1.0
Name: import_file
Version: 1.02
Summary: Import py files using their relative or absolute path.
Home-page: UNKNOWN
Author: Yuval Greenfield
Author-email: ubershmekel@gmail.com
License: Public Domain
Description: 
        import_file
        
        import_file is meant to import a python script from a normal file path.
        Relative (dotted) imports are complicated, and fixing sys.path just feels wrong.
        
        Usage examples:
        >>>from import_file import import_file
        >>>mylib = import_file('c:\mylib.py')
        >>>another = import_file('relative_subdir/another.py')
        
        So now you aren't limited to importing only within your package or trail of
        __init__.py files.
        
        This should work for python 2.5-3.2 and it's public domain, have fun.
        
        
        ubershmekel at gmail
        http://uberpython.wordpress.com
        
        
Keywords: import,path,file
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
