-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
48 lines (43 loc) · 1.34 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
[build-system]
requires = ["setuptools==75.1.0", "wheel~=0.44.0"]
build-backend = "setuptools.build_meta"
[project]
name = "apischema"
version = "0.19.0"
authors = [{ name = "Joseph Perez", email = "[email protected]" }]
license = { text = "MIT" }
description = "JSON (de)serialization, GraphQL and JSON schema generation using Python typing."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/wyfo/apischema"
Documentation = "https://wyfo.github.io/apischema"
[project.optional-dependencies]
graphql = ["graphql-core>=3.0.0"]
examples = [
"graphql-core>=3.0.0",
"attrs",
"docstring_parser",
"bson",
"orjson",
"pydantic",
"pytest",
"sqlalchemy",
]
[tool.setuptools.packages.find]
include = ["apischema*"]
[tool.setuptools.package-data]
apischema = ["py.typed"]
"apischema.deserialization" = ["methods.c"]
"apischema.serialization" = ["methods.c"]