Skip to content

Commit

Permalink
use dynamic versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers committed Feb 17, 2024
1 parent 633e1b4 commit eb3099f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
[tool.poetry]
name = "airbyte"
description = "PyAirbyte"
version = "0.1.0"
authors = ["Airbyte <[email protected]>"]
readme = "README.md"
packages = [{include = "airbyte"}]

# This project uses dynamic versioning
# https://github.com/mtkennerly/poetry-dynamic-versioning
version = "0.0.0"

[tool.poetry-dynamic-versioning]
enable = true

[tool.poetry.dependencies]
python = "^3.9"

Expand Down Expand Up @@ -51,8 +57,8 @@ airbyte-source-faker = "^6.0.0"
tomli = "^2.0"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"

[tool.pytest.ini_options]
markers = [
Expand Down

0 comments on commit eb3099f

Please sign in to comment.