-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
53 lines (48 loc) · 1.63 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
[tool.poetry]
name = "streaming-form-data"
version = "1.19.0"
description = "Streaming parser for multipart/form-data"
authors = ["Siddhant Goel <[email protected]>"]
license = "MIT"
readme = "README.md"
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"]
[tool.poetry.urls]
homepage = "https://github.com/siddhantgoel/streaming-form-data"
repository = "https://github.com/siddhantgoel/streaming-form-data"
documentation = "https://streaming-form-data.readthedocs.io"
[tool.poetry.build]
script = "build.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = "^3.9"
smart-open = "^6.0"
[tool.poetry.group.dev.dependencies]
cython = "^3.0.10"
mkdocs = "^1.6.1"
moto = "^5.0.18"
mypy = "^1.13.0"
pytest = "^8.3.3"
requests-toolbelt = "^1.0.0"
ruff = ">=0.7.1,<0.9.0"
flask = "^3.0.3"
[build-system]
requires = ["poetry-core", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"