annotate setup.cfg @ 375:7044c2900890

FIX: Convert the ultimate parse errors for a .treesum file into a real ValueError. Do not assert such important runtime errors. BUGS: Should be a dedicated exception type.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 05 May 2025 09:21:55 +0200
parents 893adaf534d6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
1 [egg_info]
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
2 tag_build =
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
3 tag_date = 0
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
4 tag_svn_revision = 0
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
5
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
6 [bdist_wheel]
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
7 universal = 1
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
8
c06e438f68b2 Build a real Python package
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
9 [sdist]
284
b65d25882e44 REFACTOR: sdist generation: postprocess an sdist to include symbolic links as symbolic links.
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
10 formats = tar
140
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
11
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
12 [metadata]
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
13 name = py-cutils
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
14 version = attr: cutils.__version__
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
15 description = Pure Python implementation of some coreutils with some extensions
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
16 author = Franz Glasner
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
17 author_email = fzglas.hg@dom66.de
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
18 license = BSD 3-Clause "New" or "Revised" License
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
19 url = https://pypi.dom66.de/simple/py-cutils/
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
20 download_url = https://pypi.dom66.de/simple/py-cutils/
356
893adaf534d6 Make licenses statements more conformant to REUSE software specifications (FSFE)
Franz Glasner <fzglas.hg@dom66.de>
parents: 296
diff changeset
21 license_files =
893adaf534d6 Make licenses statements more conformant to REUSE software specifications (FSFE)
Franz Glasner <fzglas.hg@dom66.de>
parents: 296
diff changeset
22 LICENSES/BSD-3-Clause.txt
893adaf534d6 Make licenses statements more conformant to REUSE software specifications (FSFE)
Franz Glasner <fzglas.hg@dom66.de>
parents: 296
diff changeset
23 LICENSES/MIT.txt
140
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
24 long_description = file: README.txt
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
25 long_description_content_type = text/x-rst
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
26 platforms = any
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
27 classifiers =
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
28 Development Status :: 5 - Production/Stable
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
29 Environment :: Console
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
30 Intended Audience :: Developers
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
31 Intended Audience :: End Users/Desktop
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
32 Intended Audience :: System Administrators
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
33 License :: OSI Approved :: BSD License
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
34 Operating System :: OS Independent
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
35 Programming Language :: Python :: 2.7
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
36 Programming Language :: Python :: 3
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
37 Topic :: System
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
38 Topic :: Utilities
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
39
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
40 [options]
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
41 include_package_data = False
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
42 zip_safe = True
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
43 python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
44 packages =
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
45 cutils
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
46 cutils.util
183
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
47 cutils.crcmod
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
48 cutils.crcmod.python2
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
49 cutils.crcmod.python3
140
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
50
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
51 [options.entry_points]
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
52 console_scripts =
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
53 py-dos2unix = cutils.dos2unix:main
230
ccbb6905914e Change copyright and note genpwd in the READNE and make an official script
Franz Glasner <fzglas.hg@dom66.de>
parents: 183
diff changeset
54 py-genpwd = cutils.genpwd:main
140
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
55 py-shasum = cutils.shasum:main
bf77784ee288 Use a declarative setup configuration now in setup.cfg
Franz Glasner <fzglas.hg@dom66.de>
parents: 29
diff changeset
56 py-treesum = cutils.treesum:main
183
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
57
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
58
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
59 [flake8]
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
60 exclude =
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
61 # Ignore the vendored crcmod2/crcmod sub-package
62436c255dc8 Include the vendored crcmod2 (aka crcmod) in the build; exclude from flake8
Franz Glasner <fzglas.hg@dom66.de>
parents: 165
diff changeset
62 cutils/crcmod
296
ca293f708cb4 Begin some preparation for handling glob-style patterns in treeview.
Franz Glasner <fzglas.hg@dom66.de>
parents: 284
diff changeset
63 per-file-ignores =
ca293f708cb4 Begin some preparation for handling glob-style patterns in treeview.
Franz Glasner <fzglas.hg@dom66.de>
parents: 284
diff changeset
64 # E501: line too long
ca293f708cb4 Begin some preparation for handling glob-style patterns in treeview.
Franz Glasner <fzglas.hg@dom66.de>
parents: 284
diff changeset
65 cutils/util/glob.py:E501