diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-01-05 15:22:09 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-01-05 15:25:21 -0800 |
commit | a9c43e510543d1da87642724c5d954fec7fac018 (patch) | |
tree | 3b9d9f2c54014272314b1eb0e98f068a7cf767a1 /Pipfile | |
parent | 754238a77fe62897c33d71feac78291cd9c19ce7 (diff) | |
download | fatcat-scholar-a9c43e510543d1da87642724c5d954fec7fac018.tar.gz fatcat-scholar-a9c43e510543d1da87642724c5d954fec7fac018.zip |
pipenv: add uvloop and httptools explicitly
These are not dependend on directly by uvicorn, so we need to add them
as dependencies. Don't want to include all of 'standard' features of
uvicorn because it includes a bunch of stuff we don't use.
Also, re-sorted pipenv.
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -7,12 +7,15 @@ verify_ssl = true aiofiles = "*" babel = "*" bs4 = "*" +confluent-kafka = "*" +dynaconf = ">=3" elasticsearch = ">=7.0.0,<8.0.0" elasticsearch-dsl = ">=7.0.0,<8.0.0" fastapi = "*" fatcat-openapi-client = ">=0.3.2" ftfy = "*" gunicorn = "*" +httptools = "*" internetarchive = "*" jinja2 = "*" lxml = "*" @@ -23,11 +26,10 @@ pylatexenc = "*" python-stdnum = "*" requests = ">=2" sentry-sdk = { version = ">=0.14.0", extras = [] } +starlette-prometheus = "*" toml = "*" uvicorn = "*" -dynaconf = ">=3" -confluent-kafka = "*" -starlette-prometheus = "*" +uvloop = "*" [dev-packages] ipython = "*" |