Skip to content

Commit e2302b7

Browse files
👷 build the package and test.
1 parent 0ba4f0e commit e2302b7

File tree

4 files changed

+32
-9
lines changed

4 files changed

+32
-9
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.DS_Store
2-
setup.py
32
dist
4-
python_bitvavo_api.egg-info
3+
python_bitvavo_api.egg-info
4+
.idea

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ISC License
22

3-
Copyright (c) 2018, Bitvavo
3+
Copyright (c) 2023, Bitvavo B.V
44

55
Permission to use, copy, modify, and/or distribute this software for any
66
purpose with or without fee is hereby granted, provided that the above

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11

2-
<table>
3-
<tr>
4-
<td><a href="https://bitvavo.com"><img alt="Bitvavo" src="docs/assets/bitvavo-mark-square-blue.svg" width="100" title="Bitvavo Logo"></a></td>
5-
<td><h1>Bitvavo SDK for Python</h1></td>
6-
</tr>
7-
</table>
2+
# Bitvavo SDK for Python
83

94
Crypto starts with Bitvavo.
105
You use Bitvavo SDK for Python to buy, sell, and store over 200 digital assets on Bitvavo from inside your app.

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
from setuptools import setup, find_packages
2+
3+
# read the contents of your README file
4+
from os import path
5+
this_directory = path.abspath(path.dirname(__file__))
6+
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
7+
long_description = f.read()
8+
9+
setup(
10+
name="python_bitvavo_api",
11+
long_description=long_description,
12+
long_description_content_type='text/markdown',
13+
version="0.0.4",
14+
author="Bitvavo",
15+
description="Use Bitvavo SDK for Python to buy, sell, and store over 200 digital assets on Bitvavo from inside your app.",
16+
url="https://github.com/bitvavo/python-bitvavo-api",
17+
packages=find_packages(),
18+
install_requires=[
19+
'websocket-client==0.57.0',
20+
'requests'
21+
],
22+
classifiers=[
23+
"Programming Language :: Python :: 3",
24+
"License :: OSI Approved :: ISC License (ISCL)",
25+
"Operating System :: OS Independent",
26+
],
27+
python_requires=">=3.6",
28+
)

0 commit comments

Comments
 (0)