-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
35 lines (33 loc) · 1 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
[project]
name = "nestedtext"
version = "3.7"
description = "human readable and writable data interchange format"
readme = "README.rst"
keywords = ["data", "serialization", "json", "yaml"]
authors = [
{name = "Ken Kundert"},
{name = "Kale Kundert"},
{email = "nestedtext@nurdletech.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Markup",
"Topic :: Utilities",
]
requires-python = ">=3.6"
dependencies = [
"inform>=1.28",
]
[project.urls]
homepage = "https://nestedtext.org"
documentation = "https://nestedtext.org"
repository = "https://github.com/kenkundert/nestedtext"
changelog = "https://github.com/KenKundert/nestedtext/blob/master/doc/releases.rst"
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"