-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
55 lines (50 loc) · 1.26 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
[metadata]
name = pelican-data-files
version = 1.3.0
url = https://github.com/LucasVanHaaren/pelican-data-files
# download_url = https://github.com/LucasVanHaaren/pelican-data-files
author = vhash
author_email = [email protected]
license = MIT
license_files = LICENSE
description = Pelican plugin that allows to load data from files like JSON or YAML.
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown; charset=UTF-8
keywords = pelican, pelican-plugin, data
classifiers =
Framework :: Pelican :: Plugins
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
[options]
packages =
pelican.plugins.data_files
pelican.plugins.data_files.tools
zip_safe = true
python_requires = >= 3.6
setup_requires =
setuptools >= 38.3.0 # version with most `setup.cfg` bugfixes
install_requires =
pelican >= 4.5.0
markupsafe < 2.10
[options.extras_require]
dev =
flake8
black
invoke
pytest
twine
toml =
tomli; python_version < "3.11"
yaml = pyyaml
[options.entry_points]
console_scripts =
pelican-data-files = pelican.plugins.data_files.tools.cli:main
[flake8]
max-complexity = 10
max-line-length = 88
exclude =
__pycache__,
.env,
.git,
build,
dist