forked from michalc/sqlite-s3-query
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 787 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 787 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
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sqlite-s3-query"
version = "0.0.0.dev0"
authors = [
{ name="Michal Charemza", email="michal@charemza.name" },
]
description = "Python context manager to query a SQLite file stored on S3"
readme = "README.md"
requires-python = ">=3.6.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"httpx>=0.18.2",
]
[project.optional-dependencies]
dev = [
"coverage",
]
ci-earliest = [
"httpx==0.18.2",
]
ci-latest = [
"httpx==0.24.1",
]
[project.urls]
"Home-page" = "https://github.com/michalc/sqlite-s3-query"
[tool.hatch.build]
include = [
"sqlite_s3_query.py"
]