The committed files define the requirements and information related to clog when packaging the module into a library. setup.py instantiates the build script process used by pip in editor mode, with the support of setup.cfg. File uses traditional build approach using the setuptools library.
30 lines
944 B
INI
30 lines
944 B
INI
[metadata]
|
|
name = clog
|
|
description = logging as simple as putting on a shoe.
|
|
author = Ethan Smith-Coss
|
|
license = GNU GPLv3+
|
|
license_file = LICENCE.txt
|
|
platforms = unix, linux, osx, cygwin, win32
|
|
classifiers =
|
|
Development Status :: 3 - Alpha
|
|
Environment :: Other Environment
|
|
Intended Audience :: Developers
|
|
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
Natural Language :: English
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
Programming Language :: Python :: 3.8
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3 :: Only
|
|
Topic :: System :: Logging
|
|
Topic :: Software Development :: Libraries
|
|
Topic :: Utilities
|
|
|
|
[options]
|
|
python_requires = >=3.6, <4
|
|
package_dir =
|
|
=clog
|
|
zip_safe = no |