You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
"""Run "python setup.py install" to install BetterWalk."""
from distutils.core import setup
import betterwalk
setup(
name='BetterWalk',
version=betterwalk.__version__,
author='Ben Hoyt',
author_email='benhoyt@gmail.com',
url='https://github.com/benhoyt/betterwalk',
license='New BSD License',
description='BetterWalk, a better and faster os.walk() for Python',
long_description="""BetterWalk is a somewhat better and significantly faster version of Python's os.walk(), as well as a generator version of os.listdir(). Read more at the GitHub project page.""",