-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
102 lines (92 loc) · 2.12 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[tool.poetry]
name="commonmeta-py"
version="0.56"
repository = "https://github.com/front-matter/commonmeta-py"
homepage = "https://python.commonmeta.org"
documentation = "https://python.commonmeta.org"
description="Library for conversions to/from the Commonmeta scholarly metadata format"
keywords = ["science", "metadata", "commonmeta", "bibtex", "csl", "crossref", "datacite"]
authors=["Martin Fenner <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [{include = "commonmeta"}]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
docutils = "^0.19"
setuptools = "^70.0"
sphinxcontrib-issuetracker = "^0.11"
sphinx-autodoc-typehints = "^1.19"
httpx = "^0.27"
dateparser = "^1.1.7"
types-dateparser = "^1.1"
PyYAML = "^6.0"
types-PyYAML = "^6.0"
pydash = "^7.0"
beautifulsoup4 = "^4.11"
types-beautifulsoup4 = "^4.11"
simplejson = "^3.18"
bibtexparser = "^1.4"
citeproc-py-styles = ">0.1"
citeproc-py = "^0.6"
jsonschema = "^4.21"
base32_lib = "^1.0"
nbstripout = "^0.6"
datacite = "^1.1"
xmltodict = "^0.12"
types-xmltodict = "^0.13"
nameparser = "^1.1.2"
pycountry = "^23.12.11"
click = "^8.1.7"
furl = "^2.1.3"
lxml = ">=4.8"
python-dateutil = "^2.8.2"
nh3 = "^0.2.14"
pyjwt = "^2.8.0"
asyncio = "^3.4.3"
asyncclick = "^8.1.7.1"
anyio = "^4.2.0"
orjson = "^3.9.14"
orjsonl = "^1.0.0"
pikepdf = "^8.14.0"
edtf = "^5.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
quartodoc = "^0.7.1"
jupyterlab = "^4.0.9"
jupyterlab-quarto = "^0.2.8"
[tool.poetry.scripts]
commonmeta = "commonmeta.cli:cli"
[tool.poetry.group.dev.dependencies]
coverage = "*"
ruff = "^0.3.0"
pytest = "^8.3"
pytest-cov = "^4.1.0"
pytest-recording = "^0.13.1"
vcrpy = ">=5.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
select = [
"F401",
"F403",
]
[tool.tox]
legacy_tox_ini = """
[tox]
min_version = 4.0
env_list =
py39
py310
py311
[testenv]
deps =
pytest
pytest-cov
commands = pytest --cov=commonmeta --cov-report=xml
[coverage:run]
relative_files = True
branch = True
"""