Metadata-Version: 2.4
Name: tempdir
Version: 0.7.1
Summary: Tempdirs are temporary directories, based on tempfile.mkdtemp
Home-page: https://bitbucket.org/another_thomas/tempdir
Author: Thomas Fenzl
Author-email: thomas.fenzl+tempdir@gmail.com
License: MIT
Keywords: temporary directory
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Testing
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: summary

Having to manually manage temporary directories is annoying.
So this class encapsulates temporary directories which just disappear after use,
including contained directories and files.
Temporary directories are created with tempfile.mkdtemp and thus save from race conditions.
Cleanup might not work on windows if files are still opened.
