We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d536297 commit e5d0abbCopy full SHA for e5d0abb
README.md
@@ -19,6 +19,11 @@ Official implementation of the [Bitfinex APIs (V2)](https://docs.bitfinex.com/do
19
python3 -m pip install bitfinex-api-py
20
```
21
22
+If you intend to use mypy type hints in your project, use:
23
+```console
24
+python3 -m pip install bitfinex-api-py[typing]
25
+```
26
+
27
---
28
29
# Quickstart
setup.py
@@ -45,9 +45,12 @@
45
"pyee~=11.1.0",
46
"websockets~=12.0",
47
"requests~=2.32.3",
48
- "types-requests~=2.31.0.10",
49
- "types-urllib3~=1.26.25.14",
50
],
+ extras_require={
+ "typing": [
51
+ "types-requests~=2.32.0.20241016",
52
+ ]
53
+ },
54
python_requires=">=3.8",
55
package_data={"bfxapi": ["py.typed"]},
56
)
0 commit comments