forked from deriv-com/python-deriv-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (26 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
from setuptools import find_packages, setup
setup(
name='python_deriv_api',
packages=find_packages(include=['deriv_api']),
version='0.1.7',
description='Python bindings for deriv.com websocket API',
author='Deriv Group Services Ltd',
author_email='[email protected]',
license='MIT',
install_requires=['websockets==10.3', 'reactivex==4.0.*'],
url='https://github.com/deriv-com/python-deriv-api',
project_urls={
'Bug Tracker': "https://github.com/deriv-com/python-deriv-api/issues",
'Documentation': "https://deriv-com.github.io/python-deriv-api",
'Source Code': "https://github.com/deriv-com/python-deriv-api",
'Changelog': "https://github.com/deriv-com/python-deriv-api/blob/master/CHANGELOG.md"
},
python_requires=">=3.9.6, !=3.9.7",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
long_description_content_type="text/markdown",
long_description=open('README.md').read()
)