-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 2.19 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (72 loc) · 2.19 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wt-data-platform-sdk"
version = "0.6.2"
description = "Wind Tunnel Data Platform SDK"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = {text = "MIT"}
keywords = ["sdk", "data-platform", "etl", "ingestion", "search"]
authors = [
{name = "Wind Tunnel Team"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"dldb @ git+https://github.com/DeepLink-org/Persisting.git@dldb-v1.1.2#subdirectory=persisting/dldb",
"pydantic>=2.5.0",
"loguru>=0.7.2",
"pandas>=2.3.3",
"boto3>=1.34.0",
"prometheus-client>=0.20.0",
]
[project.optional-dependencies]
# ETL-specific third-party dependencies must be declared here, never in the
# core dependency list.
etl = []
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.11.0",
"ruff>=0.1.6",
]
[project.scripts]
wt-etl = "wt_sdk.etl.cli.run:main"
wt-etl-tasks = "wt_sdk.etl.cli.tasks:main"
wt-etl-init-checkpoints = "wt_sdk.etl.cli.init_checkpoint_tables:main"
wt-etl-prepare-fixture = "wt_sdk.etl.tools.prepare_real_data_fixture:main"
wt-etl-inspect-fixture = "wt_sdk.etl.tools.inspect_test_fixture:main"
[project.urls]
Homepage = "https://github.com/AI45Lab/wt-data-platform-sdk"
Repository = "https://github.com/AI45Lab/wt-data-platform-sdk"
"Bug Tracker" = "https://github.com/AI45Lab/wt-data-platform-sdk/issues"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["wt_sdk*"]
exclude = [
"wt_data_platform_sdk.egg-info*",
"tests*",
"wt_sdk.etl.tests*",
]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
[tool.ruff]
line-length = 100
target-version = ["py310"]
[tool.pytest.ini_options]
testpaths = ["tests/unit", "wt_sdk/etl/tests/unit"]
markers = [
"integration: requires a configured DLDB/S3 environment and may write test tables",
]