Skip to content

Commit

Permalink
Move some dependency from default to standard and webserver
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Oct 3, 2023
1 parent 91c5088 commit 148f2b7
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 37 deletions.
50 changes: 25 additions & 25 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

54 changes: 42 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,28 +71,27 @@ requests = { version = "2.31.0" }
pyyaml = { version = "6.0.1" }
alembic = { version = "1.12.0", optional = true }
boltons = { version = "23.0.0", optional = true }
cornice = { version = "6.0.1" }
cornice = { version = "6.0.1", optional = true }
redis = { version = "5.0.1", optional = true }
gunicorn = { version = "21.2.0", optional = true }
lxml = { version = "4.9.3", optional = true }
objgraph = { version = "3.6.0", optional = true }
psycopg2 = { version = "2.9.8" }
pyramid = { version = "2.0.2" }
pyramid-tm = { version = "2.5" }
psycopg2 = { version = "2.9.8", optional = true }
pyramid = { version = "2.0.2", optional = true }
pyramid-tm = { version = "2.5", optional = true }
sentry-sdk = { version = "1.31.0", optional = true }
ujson = { version = "5.8.0" }
cee_syslog_handler = { version = "0.6.0" }
SQLAlchemy = { version = "2.0.16" }
SQLAlchemy-Utils = { version = "0.41.1" }
"zope.interface" = { version = "6.0" }
"zope.sqlalchemy" = { version = "3.1" }
SQLAlchemy = { version = "2.0.16", optional = true }
SQLAlchemy-Utils = { version = "0.41.1", optional = true }
"zope.interface" = { version = "6.0", optional = true }
"zope.sqlalchemy" = { version = "3.1", optional = true }
pyjwt = { version = "2.8.0", optional = true }
requests-oauthlib = { version = "1.3.1", optional = true }
waitress = { version = "2.1.2", optional = true }
scikit-image = { version = "0.21.0", optional = true }
certifi = "2023.7.22"
prometheus-client = "0.17.1"
pyramid_mako = "1.1.0"
prometheus-client = { version = "0.17.1", optional = true}
pyramid_mako = { version = "1.1.0", optional = true}

[tool.poetry.extras]
standard = [
Expand All @@ -106,15 +105,36 @@ standard = [
# broadcast
"redis",
# webserver
"cornice",
"gunicorn",
"psycopg2",
"pyramid",
"pyramid-tm",
"SQLAlchemy",
"SQLAlchemy-Utils",
"zope.interface",
"zope.sqlalchemy",
"prometheus_client",
"pyramid_mako",
]
alembic = ["alembic"]
debug = ["objgraph"]
oauth2 = ["pyjwt", "requests-oauthlib"]
sentry = ["sentry-sdk"]
dev = ["waitress"]
broadcast = ["redis"]
webserver = ["gunicorn"]
webserver = [
"cornice",
"gunicorn",
"psycopg2",
"pyramid",
"pyramid-tm",
"SQLAlchemy",
"SQLAlchemy-Utils",
"zope.interface",
"zope.sqlalchemy",
"prometheus_client",
"pyramid_mako"]
tests = ["lxml", "boltons"]
all = [
# alembic
Expand All @@ -131,7 +151,17 @@ all = [
# broadcast
"redis",
# webserver
"cornice",
"gunicorn",
"psycopg2",
"pyramid",
"pyramid-tm",
"SQLAlchemy",
"SQLAlchemy-Utils",
"zope.interface",
"zope.sqlalchemy",
"prometheus_client",
"pyramid_mako",
# tests
"lxml",
"boltons",
Expand Down

0 comments on commit 148f2b7

Please sign in to comment.