-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 2.41 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
[tool.poetry]
name = "questdb-rest"
version = "5.0.2"
description = "QuestDB REST API Python client library and CLI"
authors = ["Teddy Xinyuan Chen <45612704+tddschn@users.noreply.github.com>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/tddschn/questdb-rest"
repository = "https://github.com/tddschn/questdb-rest"
classifiers = ["Topic :: Utilities"]
keywords = ["questdb", "rest", "api", "wrapper", "client", "http"]
packages = [{ include = "questdb_rest" }]
[tool.poetry.scripts]
qdb-cli = "questdb_rest.cli:main"
questdb-cli = "questdb_rest.cli:main"
qdb-mcp = "questdb_rest.mcp_server:run_server"
questdb-mcp = "questdb_rest.mcp_server:run_server"
qdb-tables = "questdb_rest.questdb_table_names_pypika:main"
qdb-gen-random-data = "questdb_rest.qdb_gen_random_data:main"
qdb-canned-queries = "questdb_rest.qdb_canned_queries_pypika:main"
qdb-table-names = { reference = "scripts/qdb-table-names", type = "file" }
qdb-cols = { reference = "scripts/qdb-cols", type = "file" }
# qdb-canned-queries = { reference = "scripts/qdb-canned-queries", type = "file" }
qdb-canned-queries-fzf = { reference = "scripts/qdb-canned-queries-fzf", type = "file" }
qdb-drop-tables-by-regex = { reference = "scripts/qdb-drop-tables-by-regex", type = "file" }
# questdb-drop-tables-by-regex = { reference = "scripts/questdb-drop-tables-by-regex", type = "file" }
qdb-imp-from-stdin = { reference = "scripts/qdb-imp-from-stdin", type = "file" }
# questdb-imp-from-stdin = { reference = "scripts/questdb-imp-from-stdin", type = "file" }
qdb-copy-single-col-values-from-query = { reference = "scripts/qdb-copy-single-col-values-from-query", type = "file" }
qdb-get-single-col-values-from-query = { reference = "scripts/qdb-get-single-col-values-from-query", type = "file" }
# /* cSpell:disable */
# for self use only, only works for my dbs
qdbtvs = "questdb_rest.qdb_tv_symbols_search:main"
qdbdcs = "questdb_rest.qdb_dukascopy_instruments_search:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tddschn/questdb-rest/issues"
[tool.poetry.dependencies]
python = ">=3.11"
requests = "^2.32.3"
sqlparse = "^0.5.3"
tabulate = "^0.9.0"
argcomplete = "^3.6.2"
pypika = "^0.48.9"
mcp = { version = ">=1.0.0", optional = true }
# /* cSpell:enable */
rich-argparse = "^1.7.2"
[tool.poetry.extras]
mcp = ["mcp"]
[tool.poetry.group.dev.dependencies]
icecream = "^2.1.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"