-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.3 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "edgelist-mapper"
version = "0.1.2"
description = "Maps nodes and edges of a multi-relational graph to integer"
authors = ["Simone Primarosa <simonepri@outlook.com>"]
license = "MIT"
homepage = "https://github.com/simonepri/edgelist-mapper#readme"
repository = "https://github.com/simonepri/edgelist-mapper"
readme = "readme.md"
keywords = ["knowledge", "graph", "mapper", "edgelist", "converter"]
packages = [
{include = "edgelist_mapper", from = "."},
{include = "tests", from = ".", format = "sdist"},
]
[tool.taskipy.tasks]
lint = "python -m pylint edgelist_mapper tests -v --output-format colorized"
types = "python -m mypy edgelist_mapper tests"
format = "python -m black edgelist_mapper tests"
test = "python -m pytest tests --showlocals --cov=edgelist_mapper --cov-report=term-missing:skip-covered"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
taskipy = "^1.2.1"
black = "~19.10b0"
pylint = "^2.5.3"
mypy = "~0.782"
pytest = "^5.4.3"
pytest-cov = "^2.10.0"
pytest-sugar = "~0.9.3"
[tool.pylint.format]
max-line-length = 88
[tool.pylint.messages_control]
disable = [
'bad-continuation',
'duplicate-code',
'too-many-locals',
'too-many-arguments',
]
[tool.black]
line-length = 88
[build-system]
requires = ["poetry >=1,<2"]
build-backend = "poetry.masonry.api"