Make setup.py consistent with requirements.txt

pyyaml, sqlalchemy asyncpg were missing. I wasn't able to identify where we use pyyaml but left it in to not accidentally break things.
This commit is contained in:
gluap 2022-01-05 10:49:03 +01:00 committed by Paul Bienkowski
parent 0d49945018
commit 6a34eaf819

View file

@ -18,9 +18,12 @@ setup(
"sanic-cors~=2.0.1", "sanic-cors~=2.0.1",
"python-slugify~=5.0.2", "python-slugify~=5.0.2",
"motor~=2.5.1", "motor~=2.5.1",
"pyyaml<6",
"sqlparse~=0.4.2", "sqlparse~=0.4.2",
"openmaptiles-tools", # install from git "openmaptiles-tools", # install from git
"pyshp~=2.2.0", "pyshp~=2.2.0",
"sqlalchemy[asyncio]~=1.4.25",
"asyncpg~=0.24.0",
], ],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [