-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (55 loc) · 1.49 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]
package-mode = true
name = "data-watchtower"
version = "0.0.5"
description = "Data quality inspection tool. Identify issues before your CTO detects them!"
authors = ["acracker <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/acracker/data_watchtower"
[tool.poetry.dependencies]
python = "^3.7.1"
attrs = "^23.2.0"
peewee = "^3.17.3"
shortuuid = "^1.0.13"
tornado = [
{ version = "^6.2", python = "<3.8" },
{ version = "^6.4", python = ">=3.8" }
]
pandas = [
{ version = "^1.3.0", python = "<3.10" },
{ version = "^2.1.0", python = ">=3.10" }
]
polars = [
{ version = "0.18.4", python = "<3.8" },
{ version = "^0.20.23", python = ">=3.8" }
]
pyarrow = [
{ version = "^12.0.1", python = "<3.8" },
{ version = "^16.0.0", python = ">=3.8" }
]
connectorx = [
{ version = "0.3.0", python = "<=3.7" },
{ version = "0.3.1", python = "<=3.8" },
{ version = "^0.3.2", python = ">3.8" }
]
apischema = "^0.18.1"
arrow = [
{ version = "^1.2.3", python = "<3.8" },
{ version = "^1.3.0", python = ">=3.8" }
]
[tool.poetry.group.dev.dependencies]
faker = "18.13.0"
pytest = [
{ version = "^7.4.4", python = "<3.8" },
{ version = "^8.2.0", python = ">=3.8" }
]
psycopg2-binary = "^2.9.9"
pymysql = "^1.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/"
priority = "primary"