-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 961 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 961 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
[build-system]
requires = ["setuptools>=68,<77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pfc-export-questdb"
version = "0.1.0"
description = "Export QuestDB tables to PFC cold-storage archives with timestamp index"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
keywords = ["pfc", "jsonl", "compression", "questdb", "cold-storage", "archive", "timeseries"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: System :: Logging",
"Topic :: Database",
"Topic :: Utilities",
]
dependencies = ["psycopg2-binary>=2.9"]
[project.scripts]
pfc-export-questdb = "pfc_export_questdb:main"
[project.urls]
Homepage = "https://github.com/ImpossibleForge/pfc-export-questdb"
Repository = "https://github.com/ImpossibleForge/pfc-export-questdb"
[tool.setuptools]
py-modules = ["pfc_export_questdb"]