-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.97 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.97 KB
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
[build-system]
requires = ["setuptools>=78.1.1", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "flatland"
dynamic = ["version"]
description = "HTML form management and validation"
readme = "README.rst"
authors = [
{ name = "Jason Kirtland", email = "jek@discorporate.us" }
]
maintainers = [
{ name = "Thomas Waldmann", email = "tw@waldmann-edv.de" }
]
keywords = ["schema", "validation", "data", "web", "form", "forms", "roundtrip"]
license = "MIT"
license-files = ["LICENSE", "AUTHORS"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"blinker",
]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/discorporate/flatland/"
[tool.setuptools]
packages = { find = { where = ["src"], exclude = ["tests*", "tests"] } }
include-package-data = true
[tool.setuptools_scm]
write_to = "src/flatland/_version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
# Genshi 0.7.10 is not ready yet for Python 3.15 and spams quite some warnings.
"ignore:.*(Expression|Name|Constant|Call|BinOp)\\.__init__ missing 1 required positional argument.*:DeprecationWarning:genshi",
]
[tool.tox]
env_list = ["py310", "py311", "py312", "py313", "py314"]
[tool.tox.env_run_base]
deps = [
"pytest",
"Sphinx",
"Genshi",
"jinja2",
]
commands = [
["pytest", "-v"],
["sphinx-build", "-b", "doctest", "docs/source", "docs/build"],
]