view setup.cfg @ 232:7ac8a2537bc9

Implement the urlsafe base64 character repertoire
author Franz Glasner <fzglas.hg@dom66.de>
date Fri, 07 Feb 2025 13:38:06 +0100
parents ccbb6905914e
children b65d25882e44
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
    cutils.crcmod
    cutils.crcmod.python2
    cutils.crcmod.python3

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


[flake8]
exclude =
    # Ignore the vendored crcmod2/crcmod sub-package
    cutils/crcmod