-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.48 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
[build-system]
requires = ["setuptools>=74.1"]
build-backend = "setuptools.build_meta"
[project]
name = "yyjson"
version = "4.0.6"
description = "JSON parser & serializer built on yyjson"
readme = "README.md"
authors = [
{name = "Tyler Kennedy", email = "[email protected]" }
]
license = { file= "LICENSE" }
keywords = ["json", "parser", "serializer", "patcher"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/tktech/py_yyjson"
Repository = "https://github.com/tktech/py_yyjson.git"
[project.optional-dependencies]
test = ["pytest"]
release = [
"sphinx",
"sphinx-copybutton",
"ghp-import",
"bumpversion",
"black",
"furo"
]
[tool.setuptools]
ext-modules = [
{ name = "cyyjson", sources = ["yyjson/binding.c", "yyjson/yyjson.c", "yyjson/memory.c", "yyjson/document.c"], py-limited-api = true}
]
packages = ["yyjson"]