-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (35 loc) · 919 Bytes
/
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
[metadata]
name = blog-builder-th3james
version = 0.0.1
author = James Cox-Morton (th3james)
description = Static blog builder
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: WWW/HTTP :: Site Management
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
python_requires = >=3.9
install_requires =
mistletoe>=0.8.2
pygments>=2.12.0
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
blogbuilder=blogbuilder.cli:cli_main
[flake8]
ignore =
# W503 line break before binary operator (this is no longer PEP8 compliant)
W503,
# E203 whitespace before ':' (this is not PEP8 compliant)
E203,
# E501 line too long (rely on black doing good job)
E501,
[mypy]
strict = True