Skip to content

Commit b8c2187

Browse files
committed
Release v1.0.0
1 parent d8147d9 commit b8c2187

File tree

5 files changed

+45
-6
lines changed

5 files changed

+45
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ keys.json
33
test.py
44
__pycache__
55
.gitattributes
6+
build
7+
dist
8+
kuda_python.egg-info

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Kuda OpenAPI Python Library
2-
2+
[![Documentation](https://img.shields.io/badge/docs-latest-blue)](https://kuda-python.readthedocs.io/)[![Code Style](https://img.shields.io/badge/code_style-black-black)](https://black.readthedocs.io/en/stable/)[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
33

44
This is a lightweight library that works as a connector to [Kuda OpenAPI](https://kudabank.gitbook.io/kudabank/).
55

@@ -16,13 +16,14 @@ This is a lightweight library that works as a connector to [Kuda OpenAPI](https:
1616

1717
## Installation
1818

19-
Coming to PyPi<br />
20-
While the repo is not yet on pip, simply clone this library and add to your project folder.
19+
```
20+
pip install kuda-python
21+
```
2122

2223

2324
## Documentation
2425

25-
Coming Soon
26+
[https://kuda-python.readthedocs.io](https://kuda-python.readthedocs.io)
2627

2728

2829
## Getting started
@@ -74,7 +75,6 @@ from kuda import Kuda
7475
# email and apiKey are generated from your Kuda developer dashboard
7576
Kuda = Kuda(email='<email>', apiKey='<testApiKey>', show_request=True, sandbox=False, base_url="")
7677

77-
7878

7979
# Get bank list
8080
print(Kuda.bank_list())

kuda/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ class Kuda():
99
from kuda.api import bank_list
1010
from kuda.api import name_enquiry
1111
from kuda.api import create_virtual_account
12-
# from kuda.api import get_all_virtual_accounts
1312
from kuda.api import get_virtual_single_account
1413
from kuda.api import single_fund_transfer
1514
from kuda.api import virtual_fund_transfer

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requests

setup.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
from setuptools import setup, find_packages
2+
3+
# For consistent encoding
4+
from codecs import open
5+
from os import path
6+
7+
HERE = path.abspath(path.dirname(__file__))
8+
9+
with open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
10+
long_description = f.read()
11+
12+
setup(
13+
name="kuda-python",
14+
version="1.0.0",
15+
description="Kuda OpenAPI Python Library",
16+
long_description=long_description,
17+
long_description_content_type="text/markdown",
18+
url="https://kuda-python.readthedocs.io/",
19+
author="Chiemezie Njoku",
20+
author_email="[email protected]",
21+
license="MIT",
22+
classifiers=[
23+
"Intended Audience :: Developers",
24+
"License :: OSI Approved :: MIT License",
25+
"Programming Language :: Python",
26+
"Programming Language :: Python :: 3",
27+
"Programming Language :: Python :: 3.6",
28+
"Programming Language :: Python :: 3.7",
29+
"Programming Language :: Python :: 3.8",
30+
"Programming Language :: Python :: 3.9",
31+
"Operating System :: OS Independent"
32+
],
33+
packages=["kuda"],
34+
include_package_data=True,
35+
install_requires=["requests"]
36+
)

0 commit comments

Comments
 (0)