forked from n1nj4z33/iqoptionapi
-
-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 535 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 535 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""The python wrapper for IQ Option API package setup."""
from setuptools import (setup, find_packages)
setup(
name="iqoptionapi",
version="6.8.9.1",
packages=find_packages(),
install_requires=["pylint","requests","websocket-client==0.56"],
include_package_data = True,
description="Best IQ Option API for python",
long_description="Best IQ Option API for python",
url="https://github.com/Lu-Yi-Hsun/iqoptionapi",
author="Lu-Yi-Hsun",
author_email="yihsun1992@gmail.com",
zip_safe=False
)