mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-18 14:24:21 +01:00
Add bfxapi/version.py to contain the package version.
This commit is contained in:
6
setup.py
6
setup.py
@@ -1,8 +1,12 @@
|
||||
from distutils.core import setup
|
||||
|
||||
version = {}
|
||||
with open("bfxapi/version.py", encoding="utf-8") as fp:
|
||||
exec(fp.read(), version) #pylint: disable=exec-used
|
||||
|
||||
setup(
|
||||
name="bitfinex-api-py",
|
||||
version="3.0.0b1",
|
||||
version=version["__version__"],
|
||||
description="Official Bitfinex Python API",
|
||||
long_description="A Python reference implementation of the Bitfinex API for both REST and websocket interaction",
|
||||
long_description_content_type="text/markdown",
|
||||
|
||||
Reference in New Issue
Block a user