Added install requirements and packages=[]

In version 61 of setuptools, there is a [breaking change](https://setuptools.pypa.io/en/latest/history.html#v61-0-0) that introduced auto discovery for packages if no `packages` or `py_modules` is explicitly specified.

To make the command `pip install --editable .` work, I had to add `packages=[],` and list all the packages used under `install_requirements`.
This commit is contained in:
Andreas Schjønhaug 2022-07-19 13:01:02 +02:00 committed by doc-hex
parent bf08623875
commit b33620ce9f

View File

@ -28,6 +28,11 @@ setup(
'aiohttp',
'aiohttp-jinja2',
'ckcc-protocol>=1.3.2',
'pyyaml',
'pynacl==1.3.0',
'pendulum==2.0.3',
'aiohttp_session',
'requests[socks]',
],
entry_points='''
[console_scripts]
@ -38,5 +43,5 @@ setup(
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
packages=[],
)