-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
30 lines (27 loc) · 924 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
[tool.poetry]
name = "deep-sorted"
version = "0.0.3"
description = "Sorting of nested dicts and lists"
readme = "README.md"
repository = "https://github.com/danhje/deep-sorted"
homepage = "https://github.com/danhje/deep-sorted"
authors = ["Daniel Hjertholm <[email protected]>"]
license = "MIT"
keywords = ["sort", "sorted", "nested", "recursive", "deep", "dict", "list"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Natural Language :: English"
]
[tool.poetry.dependencies]
python = ">=3.8.1, <4.0"
[tool.poetry.dev-dependencies]
pytest = "*"
pre-commit = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"