-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
37 lines (34 loc) · 933 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
[tool.poetry]
name = "ils-middleware"
version = "0.5.0"
description = "Sinopia ILS Middleware using Apache Airflow"
authors = ["Jeremy Nelson <jpnelson@stanford.edu>", "Aaron Collier <aaron.collier@stanford.edu", "John Martin <suntzu@stanford.edu>"]
license = "Apache2"
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
pymarc = "^4.1.1"
apache-airflow = "^2.10.1"
apache-airflow-providers-amazon = "^8.28.0"
SQLAlchemy = "^1.3.18"
typing-extensions = ">=4.0.0"
rdflib = "6.3.2"
honeybadger = "^0.7.1"
lxml = "^4.6.4"
folio-uuid = "^0.2.0"
folioclient = "^0.60.5"
numpy = "^1.23.3"
pendulum = "^3.0.0"
psycopg2-binary = "^2.9.9"
boto3 = "^1.34.77"
[tool.poetry.dev-dependencies]
black = "^24.3.0"
flake8 = "^3.9.2"
mypy = "^1.3.0"
pytest = "^6.2"
pytest-cov = "^2.12"
pytest-mock = "^3.6.1"
types-mock = "^4.0.1"
requests-mock = "^1.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"