-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1010 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 1010 Bytes
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 = "1.5.19"
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.group.dev.dependencies]
black = "^24.3.0"
flake8 = "^7.3.0"
mypy = "1.16.0" # 6/16/2025 Pinning as 1.16.1 wheel isn't available for MacOS ARM
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"