-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
64 lines (59 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
[metadata]
name = asciidoxy
version = attr: asciidoxy._version.__version__
author = Rob van der Most
author_email = Rob.vanderMost@TomTom.com
python_requires = >=3.7
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Documentation
Topic :: Software Development :: Documentation
description = AsciiDoxy generates API documentation from Doxygen XML output to AsciiDoc.
long_description = file: README.md
long_description_content_type = text/markdown
license = Apache 2.0
keywords = asciidoxy, asciidoc, doxygen, documentation
url = https://asciidoxy.org
project_urls =
Documentation = https://asciidoxy.org
Bug Tracker = https://github.com/tomtom-international/asciidoxy/issues
Source Code = https://github.com/tomtom-international/asciidoxy
[options]
packages = find:
install_requires =
mako ~=1.1
aiohttp ~=3.6
aiodns
cchardet;python_version<'3.11'
toml ~=0.10
tqdm ~=4.46
packaging ~=20.3
importlib_resources >=1.4;python_version<'3.9'
include_package_data = True
zip_safe = False
[options.packages.find]
include =
asciidoxy
asciidoxy.*
[options.entry_points]
console_scripts =
asciidoxy = asciidoxy.cli:main
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
max-line-length = 100
per-file-ignores =
tests/*:E122,E501
# Bug in yapf
asciidoxy/parser/doxygen/type_parser.py:E131