Merge pull request #246 from Davi0kProgramsThings/v3.0.4

Merge branch `Davi0kProgramsThings:v3.0.4` into branch `bitfinexcom:master`.
This commit is contained in:
Vigan Abdurrahmani
2024-08-06 12:25:39 +02:00
committed by GitHub
4 changed files with 6 additions and 5 deletions

View File

@@ -1 +1 @@
__version__ = "3.0.3" __version__ = "3.0.4"

Binary file not shown.

Binary file not shown.

View File

@@ -2,7 +2,7 @@ from distutils.core import setup
setup( setup(
name="bitfinex-api-py", name="bitfinex-api-py",
version="3.0.3", version="3.0.4",
description="Official Bitfinex Python API", description="Official Bitfinex Python API",
long_description=( long_description=(
"A Python reference implementation of the Bitfinex API " "A Python reference implementation of the Bitfinex API "
@@ -22,6 +22,7 @@ setup(
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
], ],
keywords="bitfinex,api,trading", keywords="bitfinex,api,trading",
project_urls={ project_urls={
@@ -41,9 +42,9 @@ setup(
"bfxapi.rest._interfaces", "bfxapi.rest._interfaces",
], ],
install_requires=[ install_requires=[
"pyee~=9.0.4", "pyee~=11.1.0",
"websockets~=11.0.3", "websockets~=12.0",
"requests~=2.31.0", "requests~=2.32.3",
"types-requests~=2.31.0.10", "types-requests~=2.31.0.10",
"types-urllib3~=1.26.25.14", "types-urllib3~=1.26.25.14",
], ],