-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (55 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "mesi"
version = "0"
description = "Measure similarity in a many-to-many fashion"
authors = ["Saejin Mahlau-Heinert <[email protected]>"]
license = "GPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/Michionlion/mesi"
repository = "https://github.com/Michionlion/mesi"
documentation = "https://github.com/Michionlion/mesi"
keywords = ["diff", "similarity", "check"]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Topic :: Education :: Testing",
"Topic :: Text Processing :: General",
"Topic :: Utilities",
"Typing :: Typed",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Michionlion/mesi/issues"
[tool.poetry.scripts]
mesi = "mesi.main:mesi_cli"
[tool.poetry.dependencies]
python = ">=3.6.2, <4.0"
polyleven = "^0.7"
tabulate = "^0.8.9"
textdistance = { extras = ["extras"], version = "^4.2.1" }
tqdm = "^4.62.3"
typer = { extras = ["all"], version = "^0.4.0" }
importlib-metadata = "<4.3"
[tool.poetry.group.dev.dependencies]
black = "^21.9-beta.0"
flake8 = "^4.0.1"
isort = "^5.9.3"
mypy = "^0.910"
pydocstyle = "^6.1.1"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
taskipy = "^1.9.0"
types-tabulate = "^0.8.3"
[tool.taskipy.tasks]
test = "pytest -x -s"
cover = "pytest --cov-config=setup.cfg --cov-report term-missing --cov-report xml --cov --cov-branch"
fix = "isort mesi tests && black mesi tests"
lint_format = "black --check mesi tests && isort mesi tests --check"
lint_practices = "flake8 mesi tests"
lint_types = "mypy mesi tests"
lint_docs = "pydocstyle mesi tests"
lint = "task lint_format && task lint_practices && task lint_types && task lint_docs"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"