-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
pyproject.toml
59 lines (52 loc) · 1.38 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
[build-system]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "multipart"
requires-python = ">=3.8"
dynamic = ["version"]
license = {text = "MIT License"}
description = "Parser for multipart/form-data"
readme = "README.rst"
authors = [
{name = "Marcel Hellkamp", email = "[email protected]"},
]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Programming Language :: Python :: 3",
]
[project.urls]
PyPI = "https://pypi.org/project/multipart/"
Homepage = "https://multipart.readthedocs.io/"
Documentation = "https://multipart.readthedocs.io/"
Changelog = "https://multipart.readthedocs.io/en/latest/changelog.html"
Source = "https://github.com/defnull/multipart"
Issues = "https://github.com/defnull/multipart/issues"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"build",
"twine",
]
docs = [
"sphinx>=8,<9",
"sphinx-autobuild",
]
[tool.flit.sdist]
include = [
"test/*.py",
"README.rst",
"MAINTAINERS.rst",
"CHANGELOG.rst",
"LICENSE"
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = [ "test" ]