-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (30 loc) · 889 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
32
33
34
35
[tool.poetry]
name = "jsonpycraft"
version = "0.1.4"
description = "JsonPyCraft is a specialized Python toolkit designed for efficient and structured JSON management."
authors = ["Austin Berrio <[email protected]>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11"
python-dotenv = "^1.0.0"
[tool.poetry.dev-dependencies]
bpython = "^0.24"
black = "^24.10.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
pytest = "^8.3.3"
build = "^1.0.3"
mkdocs = "^1.6.1"
mkdocstrings = {version = "^0.26.2", extras = ["python"]}
mkdocs-material = "^9.5.42"
[tool.poetry.urls]
"Documentation" = "https://github.com/teleprint-me/json-py-craft/tree/main/docs"
"Source" = "https://github.com/teleprint-me/json-py-craft"
[tool.build]
packages = [
{ include = "jsonpycraft" }
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"