This repository has been archived by the owner on Jan 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (52 loc) · 1.51 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
[tool.poetry]
name = "itemsubjector"
version = "0.3.4"
description = "CLI-tool to easily add \"main subject\" aka topics in bulk to groups of items on Wikidata"
authors = ["Dennis Priskorn <[email protected]>"]
license = "GPLv3+"
readme = "README.md"
homepage = "https://github.com/dpriskorn/ItemSubjector"
repository = "https://github.com/dpriskorn/ItemSubjector"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Utilities",
]
keywords = ["wikidata", "subjects", "entity linking", "scientific graph", "linked open data", "open scientific data"]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
wikibaseintegrator = "^0.12.1"
pydantic = "^1.10.2"
rich = "^12.5.1"
pandas = "^1.5.0"
setuptools = "^65.4.1"
console-menu = "^0.7.1"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
coverage = "^6.5.0"
pre-commit = "^2.20.0"
pytest = "^7.1.3"
isort = "^5.10.1"
pyupgrade = "^2.38.2"
codespell = "^2.2.1"
bandit = "^1.7.4"
flake8 = "^5.0.4"
mypy = "^0.981"
flake8-2020 = "^1.7.0"
flake8-bugbear = "^22.9.23"
safety = "^2.2.0"
flake8-comprehensions = "^3.10.0"
flake8-return = "^1.1.3"
[[tool.poetry.source]]
name = "pypi-test"
url = "https://test.pypi.org/simple/"
default = false
secondary = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]