-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (31 loc) · 979 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
[build-system]
requires = ["poetry-core==1.9.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ripley"
# 0.dev.0 are replaced when CI / CD. see: .github/worflows build job
version = "0.dev.0"
description = "data / database manipulation tool. See: https://github.com/d-ganchar/ripley"
authors = ["Danila Ganchar"]
license = "MIT"
readme = "README.md"
keywords = ['data', 'database', 'sql', 'clickhouse']
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Database',
'Programming Language :: SQL',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[tool.poetry.dependencies]
python = ">=3.8 <3.13"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
parameterized = "^0.9.0"
ruff = "0.5.1"
clickhouse-driver = "0.2.8"
build = "1.2.2"
boto3 = "^1.35.43"