-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.39 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
[tool.poetry]
name = "csv-reconcile"
version = "0.3.2"
description = "OpenRefine reconciliation service backed by csv resource"
authors = ["Douglas Mennella <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/gitonthescene/csv-reconcile"
keywords = ["OpenRefine",
"reconcile",
"fuzzy search"]
build = "build.py"
packages = [
{ include = "csv_reconcile" },
{ include = "csv_reconcile_dice" }
]
[tool.poetry.dependencies]
python = "^3.7"
flask = "^2.0"
flask-cors = "^3.0.10"
cython = "^0.29.21"
normality = "^2.1.1"
importlib_metadata = { version = ">=4.5,<7.0", python = "<3.10" }
chardet = ">=4,<6"
[tool.poetry.dev-dependencies]
pytest = "^7.2"
[tool.poe.tasks]
dummydoc = { script = "utils:dummydoc" }
pandoc = { cmd = "pandoc README.org --toc -f org -t markdown_strict -s -o README.md" }
test = "pytest -v tests/main"
nox = "nox"
build = [
{ ref = "dummydoc" },
{ ref = "test" },
{ cmd = "poetry build" }
]
install = [
{ ref = "dummydoc" },
{ cmd = "poetry install" }
]
publish = [
{ ref = "pandoc" },
{ ref = "nox" },
{ cmd = "poetry publish" }
]
[tool.poetry.plugins."csv_reconcile.scorers"]
"dice" = "csv_reconcile_dice"
[tool.poetry.scripts]
csv-reconcile = "csv_reconcile:main"
[build-system]
requires = [
"poetry>=0.12",
"cython",
"setuptools!=50.0",
"wheel"
]
build-backend = "poetry.masonry.api"