-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (40 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
42 lines (40 loc) · 1.4 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "target-sqlite"
version = "0.6.0"
keywords = ["singer-io", "meltano", "elt", "sqlite", "singer-tap"]
readme = "README.md"
license.file = "LICENSE"
maintainers = [{ name = "Meltano", email = "hello@meltano.com" }]
authors = [{ name = "Meltano", email = "hello@meltano.com" }]
description = "Singer.io target for importing data to SQLite"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"inflection>=0.3.1",
"singer-python>=5.0.12",
"sqlalchemy==2.0.49",
]
optional-dependencies.dev = [
"pytest>=8",
"ruff>=0.12",
"ty>=0.0.1a19",
]
urls.Documentation = "https://hub.meltano.com/loaders/target-sqlite--meltanolabs"
urls.Homepage = "https://github.com/MeltanoLabs/target-sqlite"
urls.Repository = "https://github.com/MeltanoLabs/target-sqlite"
scripts."target-sqlite" = "target_sqlite:main"
[tool.pytest.ini_options]
markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]