-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (54 loc) · 1.4 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
[tool.poetry]
name = "csinsights"
version = "v1.1.1"
description = "This repository implements the interaction with DBLP, information extraction with GROBID, and processing of metadata with S2ORC doc2json format."
authors = ["Jan Philip Wahle <wahle@uni-wuppertal.de>", "Terry Ruas <ruas@uni-wuppertal.de>"]
[tool.poetry.scripts]
cli = "csinsights.cli:cli"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
click = "^8.0.3"
tqdm = "^4.62.3"
lxml = "^4.6.4"
appdirs = "^1.4.4"
beautifulsoup4 = "^4.10.0"
xmltodict = "^0.12.0"
requests = "^2.26.0"
jsonlines = "^3.1.0"
pandas = "^1.4.4"
[tool.poetry.dev-dependencies]
black = { version = "^22.1.0", allow-prereleases = true }
isort = "^5.9.3"
pytest-mock = "^3.6.1"
flake8 = "^4.0.1"
flake8-black = "^0.2.3"
flake8-isort = "^4.1.1"
flake8-annotations = "^2.7.0"
flake8-docstrings = "^1.6.0"
pdoc3 = "^0.10.0"
poethepoet = "^0.11.0"
pre-commit = "^2.15.0"
mypy = "^0.910"
types-requests = "^2.26.0"
lxml-stubs = "^0.3.0"
types-appdirs = "^1.4.1"
types-beautifulsoup4 = "^4.10.5"
types-click = "^7.1.8"
pep8-naming = "^0.13.2"
pandas-stubs = "^1.4.4"
tqdm-stubs = "^0.2.1"
[tool.poe.tasks]
lint = "flake8 ."
type = "mypy ."
alltest = ["lint", "type"]
isort = "isort ."
black = "black ."
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 100
[package]
include = ["csinsights/*.py"]