-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 529 Bytes
/
Copy pathsetup.py
File metadata and controls
16 lines (15 loc) · 529 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""The python wrapper for Binary API package setup."""
from setuptools import (setup, find_packages)
setup(
name="binaryapi",
version="0.4.6",
packages=find_packages(),
install_requires=["requests", "websocket-client", "simplejson", "pause", "rich"],
include_package_data=True,
description="Binary.com API for Python",
long_description="Binary.com API for Python",
url="https://github.com/mdn522/binaryapi",
author="Abdullah Mallik",
author_email="mdn522@gmail.com",
zip_safe=False
)