From c3b83184948711d285a9898f7bb901e0231cd0a9 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Tue, 12 May 2020 12:18:32 -0700 Subject: pipenv: first pass --- Pipfile | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 Pipfile (limited to 'Pipfile') diff --git a/Pipfile b/Pipfile new file mode 100644 index 0000000..22443be --- /dev/null +++ b/Pipfile @@ -0,0 +1,43 @@ +[[source]] +name = "pypi" +url = "https://pypi.org/simple" +verify_ssl = true + +[packages] +aiofiles = "*" +babel = "*" +bs4 = "*" +elasticsearch = ">=6.0.0,<7.0.0" +elasticsearch-dsl = ">=6.0.0,<7.0.0" +fastapi = "*" +fatcat-openapi-client = "*" +ftfy = "*" +internetarchive = "*" +jinja2 = "*" +lxml = "*" +minio = "*" +pycountry = "*" +pylatexenc = "*" +python-stdnum = "*" +requests = ">=2" +sentry-sdk = { version = ">=0.14.0", extras = [] } +toml = "*" +uvicorn = "*" + +# Maybe? +#citeproc-py = ">=0.4" +#citeproc-py-styles = ">=0.1" +#langdetect = "*" + +[dev-packages] +ipython = "*" +mypy = "*" +pytest = "*" +pytest-cov = "*" + +# must lock black to an exact version because it is still "beta" +# see: https://github.com/psf/black/issues/517 +black = "==19.10b0" + +[requires] +python_version = "3.7" -- cgit v1.2.3