-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (45 loc) · 991 Bytes
/
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
[tool.poetry]
name = "overdrive-reconcile"
version = "0.1.0"
license = "MIT"
description = "A set of scripts used for reconciliation of resources between NYPL & BPL Sierra and OverDrive Platform."
authors = ["Tomek <klingaroo@gmail.com>"]
readme = "README.md"
keywords = ["cataloging", "bibliographic records", "electronic resources"]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2.2.0"
pymarc = "^4.1.3"
SQLAlchemy = "^2.0.27"
PyYAML = "^6.0"
psycopg2 = "^2.9.3"
beautifulsoup4 = "^4.11.1"
requests = "^2.31.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
black = "^22.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| temp.py
)
'''