File: pyproject.toml

package info (click to toggle)
python-strictyaml 1.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,708 kB
  • sloc: python: 12,836; sh: 48; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 1,042 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["strictyaml", "strictyaml.ruamel"]

[project]
name = "strictyaml"
authors = [
    {name = "Colm O'Connor", email = "colm.oconnor.github@gmail.com"},
]
description = "Strict, typed YAML parser"
license = {text = "MIT"}
requires-python = ">=3.7.0"
keywords = ["yaml"]
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Topic :: Text Processing :: Markup",
    "Topic :: Software Development :: Libraries",
    "Natural Language :: English",
]
dependencies = [
    "python-dateutil>=2.6.0"
]
dynamic = ["version", "readme"]

[project.urls]
homepage = "https://hitchdev.com/strictyaml"
documentation = "https://hitchdev.com/strictyaml/using"
repository = "https://github.com/crdoconnor/strictyaml"
changelog = "https://hitchdev.com/strictyaml/changelog"

[tool.setuptools.dynamic]
readme = {file = ["README.md",], content-type = "text/markdown"}
version = {file = "VERSION"}