-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 965 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
38
39
40
41
42
43
44
[tool.poetry]
name = "HerdingCats"
version = "0.1.7"
description = "A tool for exploring open data catalogues"
authors = [
"christophercarlon <chris@enmeshed.dev>",
"serjhassan <serj@enmeshed.dev>",
]
readme = "README.md"
packages = [{ include = "HerdingCats" }]
license = "MIT"
homepage = "https://github.com/CHRISCARLON/Herding-CATs"
repository = "https://github.com/CHRISCARLON/Herding-CATs"
keywords = [
"open data",
"data catalogues",
"datastores",
"ckan",
"open datasoft",
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.11"
loguru = "^0.7.2"
requests = "^2.32.3"
pandas = "^2.2.2"
openpyxl = "^3.1.5"
polars = "^1.5.0"
fastexcel = "^0.11.6"
duckdb = "1.0.0"
boto3 = "^1.35.23"
pyarrow = "^17.0.0"
xlrd = "^2.0.1"
ruff = "^0.6.7"
tqdm = "^4.67.1"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.0"
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"