diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-05-12 12:18:32 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-05-12 12:18:32 -0700 |
commit | c3b83184948711d285a9898f7bb901e0231cd0a9 (patch) | |
tree | f8171ee325f385a8d7d74aba692553509638a684 /Pipfile | |
parent | f5a883642dd114ac2c29c72348bed05616189aa2 (diff) | |
download | fatcat-scholar-c3b83184948711d285a9898f7bb901e0231cd0a9.tar.gz fatcat-scholar-c3b83184948711d285a9898f7bb901e0231cd0a9.zip |
pipenv: first pass
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -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" |