-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
68 lines (60 loc) · 2.35 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
# SPDX-License-Identifier: MIT OR Apache-2.0
# SPDX-FileCopyrightText: 2018-2025 René Kijewski <[email protected]>
[project]
# keep synchronous to requirements-readthedocs.txt
# keep synchronous to src/VERSION.inc
version = "1.6.8"
name = "pyjson5"
description = "JSON5 serializer and parser for Python 3 written in Cython."
requires-python = ">= 3.7"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { text = "MIT OR Apache-2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: JavaScript",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Text Processing :: General",
]
[[project.authors]]
name = "René Kijewski"
email = "[email protected]"
[[project.maintainers]]
name = "René Kijewski"
email = "[email protected]"
[project.urls]
changelog = "https://github.com/Kijewski/pyjson5/blob/main/CHANGELOG.md"
code = "https://github.com/Kijewski/pyjson5"
documentation = "https://pyjson5.readthedocs.io/"
download = "https://pypi.org/project/pyjson5/"
homepage = "https://github.com/Kijewski/pyjson5"
tracker = "https://github.com/Kijewski/pyjson5/issues"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["Cython < 4, >= 0.29", "setuptools >= 61"]
[tool.setuptools]
zip-safe = false
include-package-data = true
package-dir.pyjson5 = "src/pyjson5"
package-data.pyjson5 = ["__init__.pyi", "py.typed"]
## still experimental:
# [[tool.setuptools.ext-modules]]
# name = "pyjson5.pyjson5"
# sources = ["pyjson5.pyx"]
# include-dirs = ["src"]
# extra-compile-args = ["-std=c++11", "-O3", "-fPIC", "-g0", "-pipe", "-fomit-frame-pointer"]
# extra-link-args = ["-std=c++11", "-O3", "-fPIC", "-g0", "-pipe", "-fomit-frame-pointer"]
# language = "c++"