view pyproject.toml @ 43:4ca530618303

Enhance for formery added check when handling conditionals after resolving schema references
author Franz Glasner <fzglas.hg@dom66.de>
date Thu, 20 Jul 2023 09:37:22 +0200
parents 72f8dd2ce0ba
children
line wrap: on
line source

[build-system]
requires = ["setuptools>=67.0", "wheel>=0.38"]
build-backend = "setuptools.build_meta"

[project]
name = "data-schema"
description = "A data validation library using schemata inspired from JSON Schema"
license = {text = "BSD 3-Clause \"New\" or \"Revised\" License"}
requires-python = ">=3.4"
authors = [
  {name = "Franz Glasner", email = "fzglas.hg@dom66.de"}
]
classifiers = [
  "Development Status :: 5 - Production/Stable",
  "Environment :: Console",
  "Intended Audience :: Developers",
  "License :: OSI Approved :: BSD License",
  "Operating System :: OS Independent",
  "Programming Language :: Python :: 3",
  "Topic :: File Formats :: JSON :: JSON Schema",
  "Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
  "rfc3986>=1.5.0",
  "ConfigMix[yaml]"
]

dynamic = ["version", "readme"]

[tool.setuptools]
packages = [
    "data_schema",
]
include-package-data = false
zip-safe = true

[tool.setuptools.dynamic]
readme = {file = ["README.txt"], content-type="text/x-rst"}