From b928aed12ebc249a2c714a28b0a97bc24b04a993 Mon Sep 17 00:00:00 2001 From: Abdelaziz Elrashed Date: Sun, 23 Jun 2024 10:28:08 +0300 Subject: [PATCH] =?UTF-8?q?=D8=AA=D8=AD=D8=AF=D9=8A=D8=AF=20=D8=A3=D8=B1?= =?UTF-8?q?=D9=82=D8=A7=D9=85=20=D9=86=D8=B3=D8=AE=20=D9=84=D8=BA=D8=A9=20?= =?UTF-8?q?=D8=A7=D9=84=D8=A8=D8=A7=D9=8A=D8=AB=D9=88=D9=86=20=D8=A7=D9=84?= =?UTF-8?q?=D8=AA=D9=8A=20=D8=AA=D8=AF=D8=B9=D9=85=D9=87=D8=A7=20=D8=A7?= =?UTF-8?q?=D9=84=D9=85=D9=83=D8=AA=D8=A8=D8=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 4 +++- setup.py | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9938ac3..678758e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,6 @@ build *.pickle tmp *.json -*.pyc \ No newline at end of file +*.pyc +__pycache__ +.pytest_cache \ No newline at end of file diff --git a/setup.py b/setup.py index 3b50123..179bc93 100644 --- a/setup.py +++ b/setup.py @@ -3,10 +3,11 @@ setup( name='zakat', packages=find_packages(include=['zakat']), - version='0.1.0', + version='0.1.1720', description='This module provides the ZakatTracker class for tracking and calculating Zakat.', author='Abdelaziz Elrashed Elshaikh Mohamed', install_requires=[], + python_requires=">=3.10", setup_requires=['pytest-runner'], tests_require=['pytest==8.2.2'], test_suite='tests',