forked from front-matter/commonmeta-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (81 loc) · 1.88 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
[tool.poetry]
name="commonmeta-py"
version="0.11.4"
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.0"
docutils = "^0.19"
sphinxcontrib-issuetracker = "^0.11"
sphinx-autodoc-typehints = "^1.19"
tqdm = "^4.64"
requests = "^2.28"
types-requests = "^2.28"
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"
fastjsonschema = "^2.18.0"
base32_lib = "^1.0"
nbstripout = "^0.6"
datacite = "^1.1"
xmltodict = "^0.12"
types-xmltodict = "^0.13"
nameparser = "^1.1.2"
pycountry = "^22.3.5"
click = "^8.1.7"
quartodoc = "^0.7.1"
jupyterlab = "^4.0.9"
jupyterlab-quarto = "^0.2.8"
furl = "^2.1.3"
vcrpy = "^5.1.0"
lxml = "^5.1.0"
python-dateutil = "^2.8.2"
nh3 = "^0.2.14"
[tool.poetry.group.dev.dependencies]
coverage = "*"
ruff = "^0.1.5"
black = "^23.9.1"
pytest = "^7.2.1"
pytest-cov = "^4.1.0"
pytest-recording = "^0.13.1"
[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
"""