-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
84 lines (72 loc) · 2.2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "bib-dedupe"
version = "0.10.0"
description = "Identify and merge duplicates in bibliographic records"
authors = ["Gerit Wagner <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/CoLRev-Environment/bib-dedupe"
documentation = "https://colrev-environment.github.io/bib-dedupe/"
keywords = ["de-duplication", "duplicate", "meta-analysis", "research", "reproducible research", "open science", "literature", "literature review", "systematic review", "systematic literature review"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Typing :: Typed",
]
[[tool.poetry.packages]]
include = "bib_dedupe"
[tool.poetry.scripts]
bib-dedupe = "bib_dedupe.cli:main"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.3"
numpy = "^2.1.2"
rapidfuzz = "^3.10.0"
number-parser = "^0.3.2"
tqdm = "^4.66.1"
requests = "^2.32.3"
pylint = {version = "3.0.1", optional = true }
pytest = {version = "^7.2.1", optional = true }
coverage = {extras = ["toml"], version = "^7.3.2", optional = true }
asreview = {version = "^1.5", optional = true }
[tool.poetry.extras]
with-data = ["pandas", "asreview"]
dev = ["pylint", "pytest", "coverage", "pytest-skip-slow"]
[tool.mypy]
python_version = 3.9
warn_unused_configs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"pkg_resources.*",
]
ignore_missing_imports = true
[tool.pylint.'MESSAGES CONTROL']
disable = ["R0801"]
[tool.coverage.report]
omit = [
"/usr/*", # omit everything in /usr
"/tmp/*",
"tests/*",
]
[tool.coverage.run]
omit = [
"/usr/*", # omit everything in /usr
"/tmp/*",
"tests/*",
]
[tool.ruff]
line-length = 160
[tool.ruff.per-file-ignores]
"**/{tests,docs}/*" = ["E501"]
[build-system]
requires = ["poetry-core>=1.0.0", "cython<3.0"]
build-backend = "poetry.core.masonry.api"