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:
parent
0d49945018
commit
6a34eaf819
|
@ -18,9 +18,12 @@ setup(
|
|||
"sanic-cors~=2.0.1",
|
||||
"python-slugify~=5.0.2",
|
||||
"motor~=2.5.1",
|
||||
"pyyaml<6",
|
||||
"sqlparse~=0.4.2",
|
||||
"openmaptiles-tools", # install from git
|
||||
"pyshp~=2.2.0",
|
||||
"sqlalchemy[asyncio]~=1.4.25",
|
||||
"asyncpg~=0.24.0",
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
|
|
Loading…
Reference in a new issue