-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (30 loc) · 931 Bytes
/
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
[build-system]
requires = ['setuptools >= 61.0']
build-backend = 'setuptools.build_meta'
[project]
name = "yamlcore"
version = "0.0.4"
dependencies = [
"PyYAML",
]
requires-python = ">= 3.6"
authors = [
{name = "Tina Müller", email = "cpan2@tinita.de"},
]
description = "YAML 1.2 Support for PyYAML"
readme = "Readme.md"
license = {file = "LICENSE"}
keywords = ["yaml"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/perlpunk/pyyaml-core"
Documentation = "https://github.com/perlpunk/pyyaml-core"
Repository = "https://github.com/perlpunk/pyyaml-core"
Issues = "https://github.com/perlpunk/pyyaml-core/issues"
Changelog = "https://github.com/perlpunk/pyyaml-core/blob/main/Changelog.md"