mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-18 06:14:22 +01:00
Add extras_require setting to setup.py.
This commit is contained in:
@@ -19,6 +19,11 @@ Official implementation of the [Bitfinex APIs (V2)](https://docs.bitfinex.com/do
|
|||||||
python3 -m pip install bitfinex-api-py
|
python3 -m pip install bitfinex-api-py
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you intend to use mypy type hints in your project, use:
|
||||||
|
```console
|
||||||
|
python3 -m pip install bitfinex-api-py[typing]
|
||||||
|
```
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# Quickstart
|
# Quickstart
|
||||||
|
|||||||
7
setup.py
7
setup.py
@@ -45,9 +45,12 @@ setup(
|
|||||||
"pyee~=11.1.0",
|
"pyee~=11.1.0",
|
||||||
"websockets~=12.0",
|
"websockets~=12.0",
|
||||||
"requests~=2.32.3",
|
"requests~=2.32.3",
|
||||||
"types-requests~=2.31.0.10",
|
|
||||||
"types-urllib3~=1.26.25.14",
|
|
||||||
],
|
],
|
||||||
|
extras_require={
|
||||||
|
"typing": [
|
||||||
|
"types-requests~=2.32.0.20241016",
|
||||||
|
]
|
||||||
|
},
|
||||||
python_requires=">=3.8",
|
python_requires=">=3.8",
|
||||||
package_data={"bfxapi": ["py.typed"]},
|
package_data={"bfxapi": ["py.typed"]},
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user