-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 868 Bytes
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
[build-system]
requires = ["setuptools>=75.6.0", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
name = "dataloader"
version = "0.1.0"
description = "A thread-safe data loader for ClickHouse."
authors = [{name="SSMIF", email="ssmifquant@gmail.com"}]
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.13.0"
dependencies = [
"attrs~=25.3.0",
"clickhouse_connect~=0.8.18",
"clickhouse_driver~=0.2.9",
"dotenv~=0.9.9",
"numpy~=2.3.2",
"pandas~=2.3.2"
]
[project.optional-dependencies]
dev = [
"black~=25.1.0",
"pylint~=3.3.8",
"mypy~=1.17.1"
]
[tool.black]
line-length = 88
target-version = ["py313"]
[tool.pylint]
max-line-length = 88
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["dataloader"]