forked from Kludex/python-multipart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (75 loc) · 2.22 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
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-multipart"
dynamic = ["version"]
description = "A streaming multipart parser for Python"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
authors = [
{ name = "Andrew Dunham", email = "[email protected]" },
{ name = "Marcelo Trylesinski", email = "[email protected]" },
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = []
[project.optional-dependencies]
dev = [
"atomicwrites==1.4.1",
"attrs==23.2.0",
"coverage==7.4.1",
"more-itertools==10.2.0",
"pbr==6.0.0",
"pluggy==1.4.0",
"py==1.11.0",
"pytest==8.0.0",
"pytest-cov==4.1.0",
"PyYAML==6.0.1",
"invoke==2.2.0",
"pytest-timeout==2.2.0",
"ruff==0.2.1",
"hatch",
]
docs = [
"mkdocs==1.5.3",
"mkdocs-material==9.5.9",
"mkdocstrings==0.24.0",
"mkdocstrings-python==1.8.0",
"mkdocs-autorefs==0.5.0",
]
[project.urls]
Homepage = "https://github.com/Kludex/python-multipart"
Documentation = "https://kludex.github.io/python-multipart/"
Changelog = "https://github.com/Kludex/python-multipart/blob/master/CHANGELOG.md"
Source = "https://github.com/Kludex/python-multipart"
[tool.hatch.version]
path = "multipart/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["multipart"]
[tool.hatch.build.targets.sdist]
include = ["/multipart", "/tests"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "FA"]
ignore = ["B904", "B028", "F841", "E741"]
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.ruff.lint.isort]
combine-as-imports = true
split-on-trailing-comma = false