Skip to content

Commit

Permalink
Update package imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jernejfrank committed Feb 1, 2025
1 parent 150b844 commit bac8e28
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,22 @@ aiosqlite = [
"aiosqlite"
]

postgresql = [
"psycopg2-binary",
asyncpg = [
"asyncpg"
]

postgresql = [
"psycopg2-binary"
] # leaving it here for backwards compatibility

psycopg2 = [
"psycopg2-binary"
]

pymongo = [
"pymongo"
]

redis = [
"redis"
]
Expand All @@ -57,17 +68,17 @@ tests = [
"pytest",
"pytest-asyncio",
"burr[hamilton]",
"pymongo",
"burr[hamilton]",
"langchain_core",
"langchain_community",
"pandas",
"psycopg2",
"asyncpg",
"pydantic[email]",
"pyarrow",
"redis",
"aiosqlite",
"burr[aiosqlite]",
"burr[asyncpg]",
"burr[psycopg2]",
"burr[pymongo]",
"burr[redis]",
"burr[opentelemetry]",
"burr[haystack]",
"burr[ray]"
Expand All @@ -81,10 +92,12 @@ documentation = [
"furo",
"sphinx-sitemap",
"sphinx-toolbox",
"psycopg2-binary",
"redis",
"ray",
"aiosqlite",
"burr[aiosqlite]",
"burr[asyncpg]",
"burr[psycopg2]",
"burr[pymongo]",
"burr[redis]",
"burr[ray]",
"sphinxcontrib-googleanalytics"
]

Expand Down Expand Up @@ -180,8 +193,9 @@ opentelemetry = [
]

ray = [
"ray"
"ray[default]"
]

[tool.setuptools]
include-package-data = true

Expand Down

0 comments on commit bac8e28

Please # to comment.