File: pyproject.toml

package info (click to toggle)
python-apischema 0.18.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,608 kB
  • sloc: python: 15,266; sh: 7; makefile: 7
file content (48 lines) | stat: -rw-r--r-- 1,368 bytes parent folder | download
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 = "joperez@hotmail.fr" }]
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"]