-
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) · 782 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 782 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.9.5"
description = "Compare two files. Supports json, plain and simple text."
authors = ["Dmitriy Bulygin <[email protected]>"]
repository = "https://github.com/DemetriusStorm/python-project-lvl2"
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX"
]
packages = [
{ include = "gendiff" },
]
[tool.poetry.dependencies]
python = "^3.8"
pyyaml = "^5.3.1"
[tool.poetry.dev-dependencies]
wemake-python-styleguide = "^0.14.0"
pytest = "^5.4.3"
pytest-cov = "^2.10.1"
[tool.poetry.scripts]
gendiff = "gendiff.scripts.gendiff:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"