-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (62 loc) · 1.55 KB
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
63
64
65
66
67
68
69
70
71
[project]
version = "1.0.83"
name = "hdxcli"
requires-python = ">=3.10,<4.0"
maintainers = [
{name = "Agustin Actis", email = "agustin@hydrolix.io"},
{name = "German Diago Gomez", email = "german@hydrolix.io"}
]
[tool.poetry]
name = "hdxcli"
version = "1.0.83"
description = "Hydrolix command line utility to do CRUD operations on projects, tables, transforms and other resources in Hydrolix clusters"
authors = ["German Diago Gomez <german@hydrolix.io>", "Agustin Actis <agustin@hydrolix.io>"]
license = "Apache-2.0"
keywords = ["database", "bigdata", "hydrolix"]
classifiers = ["Development Status :: 3 - Alpha",
"Topic :: Database",
"Topic :: Database :: Front-Ends"]
readme = "README.md"
packages = [
{ include = "hdx_cli", from = "src" }
]
[tool.poetry.scripts]
hdxcli = "hdx_cli.main:main"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
click = "^8.1.3"
requests = "^2.28.1"
toml = "^0.10.2"
sqlglot = "^10.5.10"
trogon = "^0.6.0"
pydantic = "^2.5.3"
tqdm = "^4.66.4"
pyjwt = "^2.10.1"
inquirerpy = "^0.3.4"
inflect = "^7.5.0"
clickhouse-connect = "^0.9.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
black = "^25.1.0"
isort = "^6.0.0"
pre-commit = "^4.1.0"
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.github
| venv
| dist
| tests
)/
'''
[tool.isort]
profile = "black"
line_length = 100
skip = ["venv", "dist", "tests", ".github"]
known_first_party = "hdxcli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"