-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
50 lines (46 loc) · 1.52 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
[metadata]
name = pelican-redirect
version = 1.0.2
description = Redirect pages using meta http-equiv tags
author = Bryan Weber
author_email = [email protected]
license = BSD-3-Clause
license_files = LICENSE
long_description = file: README.md
keywords = pelican, plugin, redirect, html, http-equiv
url = https://github.com/bryanwweber/pelican-redirect
long_description_content_type = text/markdown
project_urls =
Source = https://github.com/bryanwweber/pelican-redirect
Documentation = https://docs.getpelican.com
Funding = https://donate.getpelican.com/
Issues = https://github.com/bryanwweber/pelican-redirect/issues
platforms = any
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Environment :: Console
Framework :: Pelican
Framework :: Pelican :: Plugins
Intended Audience :: End Users/Desktop
Operating System :: OS Independent
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find_namespace:
python_requires = >=3.7.0,<4.0
install_requires =
pelican >=4.5
[options.extras_require]
testing =
pytest ~=6.0
pytest-cov ~=2.8
[flake8]
max_line_length = 88
# Ignore docstring requirement for dunder methods and __init__,
# the latter only when the class is documented separately
extend_ignore = D105,D107,E203,W503