-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 1008 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 1008 Bytes
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
[tool.poetry]
name = "hexlet-code"
version = "0.1.0"
description = "Diff tool for comparing JSON and YAML files. Prints out differences in three formats: stylish (default; show all changed and unchanged contents and their inner structure; plain (shows only changes and hide unchanged nested contents); JSON (show all generated data in JSON format)."
authors = ["fiftinmen <fiftin.men@gmail.com>"]
classifiers = [
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
]
repository = "https://github.com/fiftinmen/python-project-49"
readme = "README.md"
packages = [
{include = "gendiff"},
]
[tool.poetry.dependencies]
python = "^3.10,<4.0"
pyyaml = "^6.0.0,<7.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
flake8 = "^6.1.0"
[tool.poetry.scripts]
gendiff = "gendiff.scripts.gendiff:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"