-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.69 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
[project]
name = "streaming-form-data"
version = "1.19.1"
description = "Streaming parser for multipart/form-data"
readme = "README.md"
authors = [
{ name = "Siddhant Goel", email = "[email protected]" }
]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["cython", "form-data", "forms", "http", "multipart", "streaming", "web"]
dependencies = [
"smart-open>=7.0.5",
]
[project.urls]
Homepage = "https://github.com/siddhantgoel/streaming-form-data"
Repository = "https://github.com/siddhantgoel/streaming-form-data"
Documentation = "https://streaming-form-data.readthedocs.io"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
ext-modules = [
{name = "streaming_form_data._parser", sources = ["src/streaming_form_data/_parser.c"]}
]
[dependency-groups]
dev = [
"cython>=3.0.11",
"mkdocs>=1.6.1",
"moto>=5.0.22",
"mypy>=1.13.0",
"pytest>=8.3.4",
"requests-toolbelt>=1.0.0",
"ruff>=0.8.2",
]