forked from AdrianVollmer/Zundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (50 loc) · 1.34 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
[metadata]
name = zundler
summary = Bundle assets of distributed HTML docs into one self-contained HTML file
description_file = README.md
author = Adrian Vollmer
author_email = [email protected]
home_page = https://github.com/AdrianVollmer/Zundler
classifier =
Development Status :: 3 - Alpha
Environment :: Console
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
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 :: Documentation
Topic :: Utilities
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
sphinx
bs4
lxml
python-magic
importlib-metadata; python_version<"3.8"
[options.entry_points]
console_scripts =
zundler = zundler.__main__:main
sphinx.builders =
zundler = zundler.sphinxext
[mypy]
python_version = 3.8
show_column_numbers = True
show_error_context = True
ignore_missing_imports = True
follow_imports = skip
incremental = True
check_untyped_defs = True
warn_unused_ignores = True
[flake8]
show-source = True
builtins = unicode
max-line-length = 100