-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (39 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
39
40
41
42
[tool.poetry]
name = "liiatools"
version = "0.2.0"
description = "Children's Services Data Tools - Utilities for cleaning and normalising CS data by Social Finance"
authors = [
"Michael Hanks <michael.hanks@socialfinance.org.uk>",
"Patrick Troy <patrick.troy@socialfinance.org.uk>",
"Céline Gross <celine.m.gross@gmail.com>",
"Kaj Siebert <kaj@k-si.com>",
"Matthew Pugh <matthew.pugh@socialfinance.org.uk>"
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
lxml = "^4.9.1"
more-itertools = "^8.12.0"
sfdata-stream-parser = "0.4.1"
xmlschema = "^1.10.0"
click = "^8.1.2"
PyYAML = "^6.0"
tablib = {extras = ["cli", "xlsx"], version = "^3.2.0"}
regex = "^2022.4.24"
dacite = "^1.6.0"
XlsxWriter = "^3.0.3"
pandas = "^1.4.2"
openpyxl = "^3.0.9"
xlrd = "^2.0.1"
click-log = "^0.4.0"
cchardet = "2.1.7"
python-decouple = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^7.0.1"
coverage = "^6.3.2"
safety = "^1.10.3"
black = "^22.1.0"
flake8 = "^4.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"