Warning, /frameworks/syntax-highlighting/utils/schema-converter/setup.cfg is written in an unsupported language. File is not indexed.

0001 [metadata]
0002 # https://setuptools.readthedocs.io/en/latest/setuptools.html#metadata
0003 name = kateschema2theme
0004 version = 1.0.0
0005 description = Convert kate4 schema or hlcolors file to the JSON theme
0006 long_description = file: README.rst
0007 long_description_content_type = text/x-rst
0008 author = Alex Turbov
0009 author_email = i.zaufi@gmail.com
0010 maintainer = Alex Turbov
0011 maintainer_email = i.zaufi@gmail.com
0012 keywords =
0013     kate color theme
0014 license = MIT
0015 license_file = ../../LICENSES/MIT.txt
0016 platform = any
0017 classifiers =
0018     Development Status :: 4 - Beta
0019     Environment :: Console
0020     Intended Audience :: Developers
0021     License :: OSI Approved :: MIT License
0022     Natural Language :: English
0023     Operating System :: OS Independent
0024     Programming Language :: Python :: 3.8
0025     Topic :: Software Development :: Utilities
0026 
0027 [options]
0028 # https://setuptools.readthedocs.io/en/latest/setuptools.html#options
0029 packages =
0030     kateschema2theme
0031 install_requires =
0032     click
0033     columnize
0034 python_requires = >=3.8
0035 zip_safe = True
0036 
0037 [options.entry_points]
0038 console_scripts = kateschema2theme = kateschema2theme.cli:kateschema2theme
0039 
0040 [bdist_wheel]
0041 universal = 1
0042 
0043 [pycodestyle]
0044 # https://pep8.readthedocs.io/en/latest/intro.html#configuration
0045 ignore = E121,E123,E126,E131,E203,E265,W503,W504
0046 max-line-length = 160
0047 statistics = True