forked from scivision/linkchecker-markdown
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
53 lines (49 loc) · 1.14 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
[metadata]
name = mkdocs_linkcheck
version = 1.0.6
author = Byrne Reese
author_email = [email protected]
url = https://github.com/byrnereese/mkdocs-linkchecker
description = Check links for Mkdocs-based sites, as well as any markdown-based website
keywords =
markdown
mkdocs
jekyll
hugo
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Framework :: AsyncIO
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking
license_files =
LICENSE.txt
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >= 3.7
include_package_data = True
packages = find:
install_requires =
aiohttp >= 3.3
package_dir=
=src
[options.packages.find]
where=src
[options.extras_require]
tests =
pytest
lint =
flake8
flake8-bugbear
flake8-builtins
flake8-blind-except
mypy
requests =
requests
[options.entry_points]
console_scripts =
mkdocs-linkcheck = mkdocs_linkcheck.__main__:main