-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (47 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
54 lines (47 loc) · 1.51 KB
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
[tool.poetry]
name = "refextract"
version = "1.1.6"
description = "Small library for extracting references used in scholarly communication."
readme = "README.md"
homepage = "https://github.com/inspirehep/refextract"
license = "GPL-2.0-or-later"
authors = [
"CERN <admin@inspirehep.net>"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.11,<4"
unidecode = ">=1.0.22,~=1.0"
python-magic = "^0.4.27"
inspire-utils = "^3.0.61"
requests = "^2.32.3"
pypdf = "^5.4.0"
[tool.poetry.group.dev.dependencies]
mock = "^5.2.0"
responses =">=0.25.7,~=0.25"
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
ipdb = "^0.13.9"
[tool.coverage.run]
include = ["refextract/*.py"]
[tool.pytest.ini_options]
addopts = "--cov=refextract --cov-report=term-missing:skip-covered"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"