forked from pycontribs/ansi2html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
52 lines (46 loc) · 1.52 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[metadata]
name = ansi2html
url = https://github.com/pycontribs/ansi2html
project_urls =
Bug Tracker = https://github.com/pycontribs/ansi2html/issues
Release Management = https://github.com/pycontribs/ansi2html/releases
CI = https://github.com/pycontribs/ansi2html/actions
Source Code = https://github.com/pycontribs/ansi2html
long_description = file: README.rst
long_description_content_type = text/x-rst
author = 'Ralph Bean'
author_email = 'rbean@redhat.com'
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Intended Audience :: Developers
Intended Audience :: System Administrators
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Text Processing
Topic :: Text Processing :: Markup
Topic :: Text Processing :: Markup :: HTML
[bdist_rpm]
requires = python >= 3.6
[options]
use_scm_version = True
python_requires = >=3.6
packages = find:
include_package_data = True
zip_safe = False
# These are required during `setup.py` run:
setup_requires =
setuptools_scm >= 1.15.0
setuptools_scm_git_archive >= 1.0
[options.entry_points]
console_scripts =
ansi2html = ansi2html.__main__:main
[options.packages.find]
where = .
[flake8]
format = pylint
# E203: https://github.com/python/black/issues/315
ignore = E741,W503,W504,H,E501,E203,D