forked from SocialFinanceDigitalLabs/liia-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (58 loc) · 1.52 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
55
56
57
58
59
60
61
62
[tool.poetry]
name = "liiatools-dagster"
version = "0.2.1"
description = "Children's Services Data Tools - Utilities for cleaning and normalising CS data by Social Finance"
authors = [
"Michael Hanks <[email protected]>",
"Patrick Troy <[email protected]>",
"Kaj Siebert <[email protected]>",
"Matthew Pugh <[email protected]>"
]
license = "MIT"
packages = [{include = "liiatools"}]
[tool.poetry.dependencies]
python = ">=3.10, <3.11"
lxml = "^4.9.1"
more-itertools = "^8.12.0"
sfdata-stream-parser = "^0.6.0"
xmlschema = "^1.10.0"
click = "^8.1.7"
PyYAML = "^6.0"
tablib = {extras = ["cli", "xlsx"], version = "^3.2.0"}
regex = "^2022.4.24"
dacite = "^1.6.0"
XlsxWriter = "^3.0.3"
pandas = "2.2.1"
openpyxl = "^3.0.9"
xlrd = "^2.0.1"
click-log = "^0.4.0"
python-decouple = "^3.8"
faust-cchardet = "^2.1.19"
pydantic = "<2.0.0"
pydantic-yaml = "^1.1.1"
pyarrow = "^13.0.0"
fs = "^2.4.16"
fs-s3fs = "^1.1.1"
backports-strenum = "^1.2.4"
jupyterlab = {version = "^4.0.6", optional = true}
dagster = "1.6.14"
dagster-webserver = "^1.6.11"
dagster-docker = "^0.22.11"
dagster-postgres = "^0.22.11"
alembic = "^1.13.1"
python-dateutil = "^2.9.0.post0"
chardet = "^5.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.1"
coverage = "^6.3.2"
safety = "^1.10.3"
black = "^22.1.0"
flake8 = "^4.0.1"
sphinx = "^7.2.5"
sphinx-rtd-theme = "^1.3.0"
[tool.poetry.extras]
s3 = ["fs-s3fs"]
jupyter = ["jupyterlab"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"