generated from aaronsteers/awesome-python-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.11 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
[project]
name = "airbyte-connector-models"
dynamic = ["version"]
description = "Typed Pydantic models for Airbyte connectors"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = { text = "MIT" }
authors = [
{ name = "Airbyte", email = "contact@airbyte.io" }
]
dependencies = [
"pydantic (>=2.0,<3.0)",
"airbyte-api (>=0.53.0,<1.0)",
"airbyte-cdk (>=7.3.9,<8.0.0)",
"requests (>=2.31.0,<3.0)",
]
[project.urls]
Homepage = "https://github.com/airbytehq/airbyte-connector-models"
Repository = "https://github.com/airbytehq/airbyte-connector-models"
[project.optional-dependencies]
dev = [
"pytest (>=8.2.0,<9.0)",
"ruff (>=0.8.2,<1.0)",
"pyrefly (>=0.42.0)",
"datamodel-code-generator (>=0.25.0,<1.0)",
"poethepoet (>=0.26.1,<1.0)",
]
[build-system]
requires = ["hatchling", "uv-dynamic-versioning"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
style = "pep440"
fallback-version = "0.0.0"
[tool.hatch.build.targets.wheel]
packages = ["airbyte_connector_models"]
[tool.poe]
include = "poe_tasks.toml"