Skip to content

Commit ba6e516

Browse files
authored
Bump/v0.06 (#5)
* added the get_businesses and generate checkout methods * updated the readme and added type hinting * remove the type hint from postioal args * updated get_businesses method and test cases * updated user links * updated documentation for get_businesseses and generate_checkout methods and bump version to 0.05 * updated python matrices versions for ci/cd pipeline * updated python matrices versions for ci/cd pipeline * removed py.8 from matrix versions * bump to v0.06
1 parent 737b7d1 commit ba6e516

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,5 @@ dmypy.json
133133
notes.md
134134
guide.md
135135
.DS_Store
136-
junk*
136+
junk*
137+
.pypirc

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include README.md
2-
include reader/*.txt
2+
include reader/*.txt
3+
exclude tests/*

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pathlib
2-
import setuptools # noqa: F401
2+
from setuptools import find_packages # noqa: F401
33
from distutils.core import setup
44

55

@@ -12,11 +12,11 @@
1212

1313
setup(
1414
name="pythepeer",
15-
version="0.0.5",
15+
version="0.0.6",
1616
description="official python sdk for interacting with thepeer payment processing \
1717
infrastructure",
1818
author="Osagie Iyayi",
19-
packages=["thepeer"],
19+
packages=find_packages(),
2020
author_email="[email protected]",
2121
url="https://github.com/thepeerstack/python-sdk",
2222
license="MIT",

0 commit comments

Comments
 (0)