-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
45 lines (42 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
[metadata]
name = mwcomposerfromhell
version = 0.5
description = Convert the parsed MediaWiki wikicode (using mwparserfromhell) to HTML.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Patrick Cloke
author_email = [email protected]
url = https://github.com/clokep/mwcomposerfromhell
classifiers=
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Internet
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: ISC License (ISCL)
[options]
packages = find:
python_requires = >=3.7
install_requires = mwparserfromhell>=0.6.2
[options.extras_require]
dev =
# For running tests.
pytest==6.2.4
coverage
# Style checking.
flake8==3.9.2
flake8-builtins==1.5.3 # For disallowing shadowing of Python built-ins.
flake8-import-order==0.18.1
# For Python 3.7 compatibility.
importlib-metadata<5
# Typing related.
mypy
# Formatting.
black
[options.packages.find]
exclude = tests