-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 919 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 919 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "basalt-client"
version = "0.1.0"
description = "Official Python client for Basalt — a from-scratch HTAP database engine (DB-API 2.0 style, dependency-free)."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["database", "sql", "htap", "olap", "oltp", "columnar", "dbapi", "basalt"]
authors = [{ name = "Basalt contributors" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
]
[project.urls]
Homepage = "https://github.com/basalt-db/basalt-python"
Repository = "https://github.com/basalt-db/basalt-python"
Issues = "https://github.com/basalt-db/basalt-python/issues"
"Main project" = "https://github.com/basalt-db/basalt"
[tool.setuptools]
packages = ["basalt"]