forked from Kludex/python-multipart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.73 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-multipart"
dynamic = ["version"]
description = "A streaming multipart parser for Python"
readme = "README.rst"
license = "Apache-2.0"
requires-python = ">=3.7"
authors = [{ name = "Andrew Dunham", 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.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = []
[project.optional-dependencies]
dev = [
"atomicwrites==1.2.1",
"attrs==19.2.0",
"coverage==6.5.0",
"more-itertools==4.3.0",
"pbr==4.3.0",
"pluggy==1.0.0",
"py==1.11.0",
"pytest==7.2.0",
"pytest-cov==4.0.0",
"PyYAML==5.1",
"invoke==2.2.0",
"pytest-timeout==2.1.0",
"hatch",
]
[project.urls]
Homepage = "https://github.com/andrew-d/python-multipart"
Documentation = "https://andrew-d.github.io/python-multipart/"
Changelog = "https://github.com/andrew-d/python-multipart/blob/master/CHANGELOG.md"
Source = "https://github.com/andrew-d/python-multipart"
[tool.hatch.version]
path = "multipart/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["multipart"]
[tool.hatch.build.targets.sdist]
include = ["/multipart", "/tests"]