-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.19 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
[tool.poetry]
name = "bibbi-aut"
version = "0.1.0"
description = "Conversion scripts for Biblioteksentralen's authority records"
authors = ["Dan Michael O. Heggø <[email protected]>"]
license = "MIT"
packages = [
{ include = "bibbi" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = "^3.8"
pandas = "^1.0.3"
openpyxl = "^3.0.3"
rdflib = "^5.0.0"
psutil = "^5.7.0"
otsrdflib = "^0.5.0"
pyodbc = "^4.0.30"
pydash = "^4.7.6"
feather-format = "^0.4.1"
skosify = {git = "https://github.com/NatLibFi/Skosify.git", rev = "master"}
python-dotenv = "^0.13.0"
colorama = "^0.4.3"
sparqlwrapper = "^1.8.5"
humanize = "^2.5.0"
orjson = "^3.3.0"
elasticsearch = "^7.8.0"
requests = "^2.24.0"
sqlalchemy = "^1.3.19"
tqdm = "^4.48.2"
Jinja2 = "^2.11.2"
packaging = "^20.8"
PyYAML = "^5.3.1"
cryptography = "^3.3.1"
attrs = "^20.3.0"
gzip-stream = "^1.1.0"
structlog = "^21.1.0"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
pytest-testdox = "^1.2.1"
ipykernel = "^5.3.0"
mypy = "^0.782"
[tool.poetry.scripts]
console = "bibbi.console:app"
[tool.pytest.ini_options]
addopts = "--verbose tests"
[build-system]
requires = ["poetry>=1.1.4"]
build-backend = "poetry.masonry.api"