-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
45 lines (40 loc) · 1.42 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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "json-stream"
version = "2.3.2"
authors = [
{name = "Jamie Cockburn", email="[email protected]"},
]
license = {file = "LICENSE.txt"}
description = "Streaming JSON encoder and decoder"
keywords = ["json", "stream", "decoder", "encoder", "parsing"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"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",
]
requires-python = ">=3.5,<4"
dependencies = ["json-stream-rs-tokenizer >= 0.4.17"]
dynamic = ["readme"]
[project.urls]
Homepage = "https://github.com/daggaz/json-stream"
Repository = "https://github.com/daggaz/json-stream"
Tracker = "https://github.com/daggaz/json-stream/issues"
Funding = "https://www.buymeacoffee.com/daggaz"
[project.optional-dependencies]
requests = ["requests"]
httpx = ["httpx"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}