From 87f1191050dc95dcbf9c1b982b04b509f4d95a95 Mon Sep 17 00:00:00 2001 From: Georgiy Eterevskiy <goshik_e@mail.ru> Date: Mon, 14 Feb 2022 15:48:41 +0300 Subject: [PATCH] Fix MANIFEST.in --- .gitignore | 1 + MANIFEST.in | 8 +++++++- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0566878..c0f8b6d 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,7 @@ __pycache__/ *.so # Distribution / packaging +.DS_Store .Python build/ develop-eggs/ diff --git a/MANIFEST.in b/MANIFEST.in index f7b46d3..20087b1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,6 @@ +# Include requirements +include requirements.txt build-requirements.txt + # Include the README include *.md @@ -8,4 +11,7 @@ include LICENSE.txt include setup.py # Include the data files -recursive-include data * \ No newline at end of file +recursive-include data * + +# Include examples +recursive-include examples * \ No newline at end of file diff --git a/setup.py b/setup.py index 3e7b5d4..18b98db 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def load_requirements(): setup( name='perxis', - version='0.0.6', + version='0.0.7', description='Perxis python client', long_description=long_description, long_description_content_type='text/markdown', -- GitLab