view setup.cfg @ 177:089c40240061

Add an alternate implementation for generating directory tree digests: - Do not use something like os.walk() but use os.scandir() directly. - Recursively generate the subdirectory digests only when needed and in the right order. This fixes that the order of subdirectories in the output did not match the application order of its directory digests. The new implementation also should make filtering (that will be implemented later) easier. NOTE: The tree digests of the old and the new implementation are identical.
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 11 Jan 2025 17:41:28 +0100
parents b32b41297893
children 62436c255dc8
line wrap: on
line source

[egg_info]
tag_build =
tag_date = 0
tag_svn_revision = 0

[bdist_wheel]
universal = 1

[sdist]
formats = gztar

[metadata]
name = py-cutils
version = attr: cutils.__version__
description = Pure Python implementation of some coreutils with some extensions
author = Franz Glasner
author_email = fzglas.hg@dom66.de
license = BSD 3-Clause "New" or "Revised" License
url = https://pypi.dom66.de/simple/py-cutils/
download_url = https://pypi.dom66.de/simple/py-cutils/
license_files = LICENSE.txt
long_description = file: README.txt
long_description_content_type = text/x-rst
platforms = any
classifiers =
    Development Status :: 5 - Production/Stable
    Environment :: Console
    Intended Audience :: Developers
    Intended Audience :: End Users/Desktop
    Intended Audience :: System Administrators
    License :: OSI Approved :: BSD License
    Operating System :: OS Independent
    Programming Language :: Python :: 2.7
    Programming Language :: Python :: 3
    Topic :: System
    Topic :: Utilities

[options]
include_package_data = False
zip_safe = True
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
packages =
    cutils
    cutils.util

[options.entry_points]
console_scripts =
    py-dos2unix = cutils.dos2unix:main
    py-shasum = cutils.shasum:main
    py-treesum = cutils.treesum:main