mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-18 14:24:21 +01:00
Add setup.py file in project root.
This commit is contained in:
22
setup.py
Normal file
22
setup.py
Normal file
@@ -0,0 +1,22 @@
|
||||
from distutils.core import setup
|
||||
|
||||
setup(
|
||||
name="bitfinex-api-py",
|
||||
version="3.0.0",
|
||||
packages=[ "bfxapi", "bfxapi.websocket" ],
|
||||
url="https://github.com/bitfinexcom/bitfinex-api-py",
|
||||
license="OSI Approved :: Apache Software License",
|
||||
author="Bitfinex",
|
||||
author_email="support@bitfinex.com",
|
||||
description="Official Bitfinex Python API",
|
||||
keywords="bitfinex,api,trading",
|
||||
install_requires=[
|
||||
"pyee~=9.0.4",
|
||||
"typing_extensions~=4.4.0",
|
||||
"websockets~=10.4",
|
||||
],
|
||||
project_urls={
|
||||
"Bug Reports": "https://github.com/bitfinexcom/bitfinex-api-py/issues",
|
||||
"Source": "https://github.com/bitfinexcom/bitfinex-api-py",
|
||||
}
|
||||
)
|
||||
Reference in New Issue
Block a user