-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
75 lines (66 loc) · 1.97 KB
/
pyproject.toml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "peppercorn"
dynamic = ["readme"]
version = "0.7dev0"
description= "Convert tokens into data structure for use in web form posts"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
]
requires-python = ">= 3.8"
keywords = ["web", "wsgi", "form generation", "library"]
authors = [
{name="Agendaless Consulting", email="[email protected]"},
]
license = {text = "BSD-derived (http://www.repoze.org/LICENSE.txt)"}
[project.urls]
Documentation ="https://docs.pylonsproject.org/projects/peppercorn/en/latest/"
Repository = "https://github.com/Pylons/peppercorn.git"
Issues = "https://github.com/Pylons/peppercorn/issues"
[project.optional-dependencies]
docs = [
"Sphinx >= 1.7.6",
"pylons-sphinx-themes",
]
testing = [
"pytest",
"pytest-cov",
"multipart",
]
[tool.setuptools]
include-package-data = true
packages = ["peppercorn"]
[tool.setuptools.dynamic]
readme = {file = ["README.rst", "CHANGES.rst"]}
[tool.pytest.ini_options]
pythonpath = "."
python_files = "test_*.py"
testpaths = [ "peppercorn/tests.py" ]
addopts = "--cov=peppercorn --cov-branch --cov-fail-under=100"
[tool.coverage.report]
show_missing = true
[tool.check-manifest]
ignore = [
"setup.cfg",
".gitignore",
".gitattributes",
"PKG-INFO",
"*.egg-info",
"*.egg-info/*",
]
ignore-default-rules = true
ignore-bad-ideas = [
"tests/pkgs/localeapp/**/*.mo",
]