-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
65 lines (57 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
[tool.poetry]
name = "Findpapers"
version = "0.6.7"
description = "Findpapers is an application that helps researchers who are looking for references for their work."
authors = ["Jonatas Grosman <[email protected]>"]
maintainers = ["Jonatas Grosman <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jonatasgrosman/findpapers"
repository = "https://github.com/jonatasgrosman/findpapers"
documentation = "https://github.com/jonatasgrosman/findpapers"
keywords = ["academic", "academic publications", "academic publishing", "acm", "arxiv", "bibtex", "biorxiv", "collect papers", "crawler", "ieee", "medrxiv", "paper", "papers", "pubmed", "research", "scientific papers", "scientific publications", "scientific publishing", "scopus", "scraper", "systematic mapping", "systematic review"]
[tool.poetry.scripts]
findpapers = "findpapers.cli:main"
[tool.poetry.dependencies]
python = "^3.7"
lxml = "^4.5.2"
requests = "^2.24.0"
colorama = "^0.4.3"
inquirer = "^2.7.0"
edlib = "^1.3.8"
xmltodict = "^0.12.0"
typer = "^0.3.2"
importlib-metadata = {version = "^1.0", python = "<3.8"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^2.10.1"
pytest-randomly = "^3.4.1"
Sphinx = "^3.2.1"
coverage = {version = "^5.2.1", extras = ["toml"]}
[tool.poetry.urls]
issues = "https://github.com/jonatasgrosman/findpapers/issues"
[tool.pytest.ini_options]
junit_family = "xunit2"
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests"
]
[tool.coverage.run]
source = ['.']
omit = [
"findpapers/models/__init__.py",
"findpapers/searcher/__init__.py"
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if 0:",
"if __name__ == .__main__.:"
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"