diff --git a/.gitignore b/.gitignore index fa41a57..22f9095 100644 --- a/.gitignore +++ b/.gitignore @@ -133,4 +133,5 @@ dmypy.json notes.md guide.md .DS_Store -junk* \ No newline at end of file +junk* +.pypirc \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in index c056a15..c03c3f4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include README.md -include reader/*.txt \ No newline at end of file +include reader/*.txt +exclude tests/* \ No newline at end of file diff --git a/setup.py b/setup.py index 03aba6f..8aa7dcd 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import pathlib -import setuptools # noqa: F401 +from setuptools import find_packages # noqa: F401 from distutils.core import setup @@ -12,11 +12,11 @@ setup( name="pythepeer", - version="0.0.5", + version="0.0.6", description="official python sdk for interacting with thepeer payment processing \ infrastructure", author="Osagie Iyayi", - packages=["thepeer"], + packages=find_packages(), author_email="iyayiemmanuel1@gmail.com", url="https://github.com/thepeerstack/python-sdk", license="MIT",