Mercurial > hgrepos > Python > apps > py-cutils
comparison setup.cfg @ 140:bf77784ee288
Use a declarative setup configuration now in setup.cfg
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Fri, 03 Jan 2025 01:06:19 +0100 |
| parents | c06e438f68b2 |
| children | fdc456832ba6 |
comparison
equal
deleted
inserted
replaced
| 139:73e8116484f2 | 140:bf77784ee288 |
|---|---|
| 1 [metadata] | |
| 2 license_file = LICENSE.txt | |
| 3 | |
| 4 [egg_info] | 1 [egg_info] |
| 5 tag_build = | 2 tag_build = |
| 6 tag_date = 0 | 3 tag_date = 0 |
| 7 tag_svn_revision = 0 | 4 tag_svn_revision = 0 |
| 8 | 5 |
| 9 [bdist_wheel] | 6 [bdist_wheel] |
| 10 universal = 1 | 7 universal = 1 |
| 11 | 8 |
| 12 [sdist] | 9 [sdist] |
| 13 formats = gztar | 10 formats = gztar |
| 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 = LICENSE.txt | |
| 22 long_description = file: README.txt | |
| 23 long_description_content_type = text/x-rst | |
| 24 platforms = any | |
| 25 classifiers = | |
| 26 Development Status :: 5 - Production/Stable | |
| 27 Environment :: Console | |
| 28 Intended Audience :: Developers | |
| 29 Intended Audience :: End Users/Desktop | |
| 30 Intended Audience :: System Administrators | |
| 31 License :: OSI Approved :: BSD License | |
| 32 Operating System :: OS Independent | |
| 33 Programming Language :: Python :: 2.7 | |
| 34 Programming Language :: Python :: 3 | |
| 35 Topic :: System | |
| 36 Topic :: Utilities | |
| 37 | |
| 38 [options] | |
| 39 include_package_data = False | |
| 40 zip_safe = True | |
| 41 python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.* | |
| 42 packages = | |
| 43 cutils | |
| 44 cutils.util | |
| 45 | |
| 46 [options.entry_points] | |
| 47 console_scripts = | |
| 48 py-dos2unix = cutils.dos2unix:main | |
| 49 py-shasum = cutils.shasum:main | |
| 50 py-treesum = cutils.treesum:main |
