forked from moj-analytical-services/mojap-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1.05 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
[tool]
[tool.poetry]
name = "mojap-metadata"
version = "1.11.2"
description = "A python package to manage metadata"
license = "MIT"
authors = ["MoJ Data Engineering <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
jsonschema = ">=3.0.0"
parameterized = "0.7.*"
PyYAML = ">=5.4.1"
pyarrow = { version = ">=3.0.0", optional = true }
etl-manager = { version = "^7.4", optional = true }
psycopg2 = { version = "^2.9.2", optional = true, extras = ["postgres"]}
"testing.postgresql" ={ version = "^1.3.0", optional = true, extras = ["postgres"]}
SQLAlchemy = { version = "^1.4.27", optional = true, extras = ["postgres"]}
dataengineeringutils3 = ">=1.4.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
black = ">=20.8b1"
pytest = ">=6.1.2"
pytest-watch = ">=4.2.0"
moto = "^2.2.11"
pandas = "^1.5.0"
[tool.poetry.extras]
arrow = ["pyarrow"]
etl-manager = ["etl-manager"]
postgres = ["psycopg2","testing.postgresql","SQLAlchemy"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"