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:
parent
bf08623875
commit
b33620ce9f
7
setup.py
7
setup.py
@ -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=[],
|
||||
)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user