Mercurial > hgrepos > Python > apps > py-cutils
comparison setup.cfg @ 390:1ea88e3bec25
On the default trunk begin a pure PEP 517 build configuration.
This is Python3 only.
Builds with Python2.7 and/or older Python3 versions are supported on the
upcoming build-2.7 branch.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 16 Feb 2026 13:28:35 +0100 |
| parents | 893adaf534d6 |
| children | f5f88fca7187 1afe2758f802 |
comparison
equal
deleted
inserted
replaced
| 389:faa36af3c629 | 390:1ea88e3bec25 |
|---|---|
| 7 universal = 1 | 7 universal = 1 |
| 8 | 8 |
| 9 [sdist] | 9 [sdist] |
| 10 formats = tar | 10 formats = tar |
| 11 | 11 |
| 12 [metadata] | |
| 13 name = py-cutils | |
| 14 version = attr: cutils.__version__ | |
| 15 description = Pure Python implementation of some coreutils with some extensions | |
| 16 author = Franz Glasner | |
| 17 author_email = fzglas.hg@dom66.de | |
| 18 license = BSD 3-Clause "New" or "Revised" License | |
| 19 url = https://pypi.dom66.de/simple/py-cutils/ | |
| 20 download_url = https://pypi.dom66.de/simple/py-cutils/ | |
| 21 license_files = | |
| 22 LICENSES/BSD-3-Clause.txt | |
| 23 LICENSES/MIT.txt | |
| 24 long_description = file: README.txt | |
| 25 long_description_content_type = text/x-rst | |
| 26 platforms = any | |
| 27 classifiers = | |
| 28 Development Status :: 5 - Production/Stable | |
| 29 Environment :: Console | |
| 30 Intended Audience :: Developers | |
| 31 Intended Audience :: End Users/Desktop | |
| 32 Intended Audience :: System Administrators | |
| 33 License :: OSI Approved :: BSD License | |
| 34 Operating System :: OS Independent | |
| 35 Programming Language :: Python :: 2.7 | |
| 36 Programming Language :: Python :: 3 | |
| 37 Topic :: System | |
| 38 Topic :: Utilities | |
| 39 | |
| 40 [options] | |
| 41 include_package_data = False | |
| 42 zip_safe = True | |
| 43 python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.* | |
| 44 packages = | |
| 45 cutils | |
| 46 cutils.util | |
| 47 cutils.crcmod | |
| 48 cutils.crcmod.python2 | |
| 49 cutils.crcmod.python3 | |
| 50 | |
| 51 [options.entry_points] | |
| 52 console_scripts = | |
| 53 py-dos2unix = cutils.dos2unix:main | |
| 54 py-genpwd = cutils.genpwd:main | |
| 55 py-shasum = cutils.shasum:main | |
| 56 py-treesum = cutils.treesum:main | |
| 57 | |
| 58 | |
| 59 [flake8] | 12 [flake8] |
| 60 exclude = | 13 exclude = |
| 61 # Ignore the vendored crcmod2/crcmod sub-package | 14 # Ignore the vendored crcmod2/crcmod sub-package |
| 62 cutils/crcmod | 15 cutils/crcmod |
| 63 per-file-ignores = | 16 per-file-ignores = |
