Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelinfosec committed Jul 18, 2022
1 parent d8147d9 commit b8c2187
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ keys.json
test.py
__pycache__
.gitattributes
build
dist
kuda_python.egg-info
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Kuda OpenAPI Python Library

[![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)

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

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

## Installation

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


## Documentation

Coming Soon
[https://kuda-python.readthedocs.io](https://kuda-python.readthedocs.io)


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



# Get bank list
print(Kuda.bank_list())
Expand Down
1 change: 0 additions & 1 deletion kuda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class Kuda():
from kuda.api import bank_list
from kuda.api import name_enquiry
from kuda.api import create_virtual_account
# from kuda.api import get_all_virtual_accounts
from kuda.api import get_virtual_single_account
from kuda.api import single_fund_transfer
from kuda.api import virtual_fund_transfer
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests
36 changes: 36 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
from setuptools import setup, find_packages

# For consistent encoding
from codecs import open
from os import path

HERE = path.abspath(path.dirname(__file__))

with open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name="kuda-python",
version="1.0.0",
description="Kuda OpenAPI Python Library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://kuda-python.readthedocs.io/",
author="Chiemezie Njoku",
author_email="[email protected]",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent"
],
packages=["kuda"],
include_package_data=True,
install_requires=["requests"]
)

0 comments on commit b8c2187

Please sign in to comment.