-
Notifications
You must be signed in to change notification settings - Fork 61
/
pyproject.toml
37 lines (33 loc) · 1.02 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["strictyaml", "strictyaml.ruamel"]
[project]
name = "strictyaml"
authors = [
{name = "Colm O'Connor", email = "[email protected]"},
]
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"}