-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 745 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 745 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
32
33
34
35
[tool.poetry]
name = "gendiff"
version = "0.1.4"
description = "Compare structures"
authors = ["Konstantin Freidlin <freidlinks@ya.ru>"]
packages = [
{ include = "gendiff"}
]
repository = "https://github.com/mnogom/python-project-lvl2"
classifiers = [
"Topic :: Education",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.7"
PyYAML = "^6.0.1"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
pytest = "^6.2.2"
pytest-cov = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
gendiff = "gendiff.scripts.gendiff:main"
# Add test repository source
[[tool.poetry.source]]
name = "testPypi"
url = "https://test.pypi.org/legacy/"
secondary = true