Skip to content

Commit

Permalink
main: postgres is now an optional dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
balinthaller committed Feb 25, 2021
1 parent 38be4f3 commit a496637
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "carte-cli"
version = "0.2.1"
version = "0.2.2"
description = "A static site generator for data catalogs"
authors = ["Balint Haller <balint@hey.com>"]
license = "Apache-2.0"
Expand All @@ -19,8 +19,11 @@ amundsen-databuilder = "^4.1.0"
boto3 = "^1.17.2"
typer = "^0.3.2"
click-spinner = "^0.1.10"
SQLAlchemy = "^1.3.23"
psycopg2 = "^2.8.6"
psycopg2 = { version = "^2.8.6", optional = true }
SQLAlchemy = { version = "^1.3.23", optional = true }

[tool.poetry.extras]
postgres = ["psycopg2", "SQLAlchemy"]

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit a496637

Please sign in to comment.