-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
executable file
·29 lines (27 loc) · 986 Bytes
/
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
27
28
29
from setuptools import setup, find_packages
from os import path
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="python_bitvavo_api",
long_description=long_description,
long_description_content_type='text/markdown',
version="v1.4.2",
author="Bitvavo",
description="Use Bitvavo SDK for Python to buy, sell, and store over 200 digital assets on Bitvavo from inside your app.",
url="https://github.com/bitvavo/python-bitvavo-api",
packages=find_packages(),
install_requires=[
'websocket-client>=1.6.0,<2.0.0',
'requests>=2.31.0,<3.0.0',
'setuptools'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)