Apply pylint's linting rules to setup.py.

This commit is contained in:
Davide Casale
2023-03-08 21:50:41 +01:00
parent d04ebb96d5
commit bba1493043
2 changed files with 5 additions and 3 deletions

4
.gitignore vendored
View File

@@ -2,8 +2,10 @@
*.pyc
*.log
bitfinex_api_py.egg-info
__pycache__
dist
venv
!.gitkeep
!.gitkeep

View File

@@ -27,7 +27,7 @@ setup(
"Bug Reports": "https://github.com/bitfinexcom/bitfinex-api-py/issues",
"Source": "https://github.com/bitfinexcom/bitfinex-api-py",
},
packages=[
packages=[
"bfxapi", "bfxapi.utils",
"bfxapi.websocket", "bfxapi.websocket.client", "bfxapi.websocket.handlers",
"bfxapi.rest", "bfxapi.rest.endpoints", "bfxapi.rest.middleware",
@@ -38,4 +38,4 @@ setup(
"requests~=2.28.1"
],
python_requires=">=3.8"
)
)