-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
43 lines (39 loc) · 1.03 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
[tool.poetry]
name = "oc-ds-converter"
version = "1.0.4"
description = "A library for converting metadata provided by various data sources, e.g. Crossref, DataCite, JaLC, and mEDRA, into the format used by OpenCitations Meta."
authors = ["arcangelo7 <[email protected]>"]
license = "ISC"
readme = "README.md"
packages = [{include = "oc_ds_converter"}]
[tool.poetry.dependencies]
python = "^3.9,<3.14"
beautifulsoup4 = "^4.12.1"
requests = "^2.28.2"
tqdm = "^4.65.0"
PyYAML = "^6.0"
redis = "^4.5.5"
ndjson = "^0.3.1"
zstandard = "^0.21.0"
python-dateutil = "^2.8.2"
validators = "^0.20.0"
lxml = ">=4.9.2,<6.0.0"
pandas = "^2.2.3"
xmltodict = "^0.13.0"
pebble = "^5.0.3"
fakeredis = "^2.14.0"
packaging = "^23.1"
poetry = "^1.5.1"
self = "^2020.12.3"
update = "^0.0.1"
filelock = "^3.12.2"
six = "^1.16.0"
[tool.poetry.group.dev.dependencies]
wget = "^3.2"
coverage = "^7.2.5"
coverage-badge = "^1.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
test = 'test.run_all_tests:main'