Skip to content

Commit

Permalink
ضبط تفاصيل المشروع
Browse files Browse the repository at this point in the history
  • Loading branch information
vzool committed Jul 29, 2024
1 parent 90fbfb9 commit 26aafc7
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 18 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ clean:
rm -rf tests/*.json
rm -rf snapshots

.PHONY: dev-build
# dev-build the library
dev-build:
python3 setup.py build_ext --inplace

.PHONY: deps
# deps development
deps:
Expand Down
30 changes: 19 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,26 @@
[project]
name = "zakat"
version = "0.2.84"
name = 'zakat'
version = '0.2.85'
authors = [
{ name="Abdelaziz Elrashed Elshaikh Mohamed", email="aeemh.sdn@gmail.com" },
{ name='Abdelaziz Elrashed Elshaikh Mohamed', email='aeemh.sdn@gmail.com' },
]
description = "A Python Library for Islamic Financial Management."
readme = "README.md"
requires-python = ">=3.10"
description = 'A Python Library for Islamic Financial Management.'
readme = 'README.md'
requires-python = '>=3.10'
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
dependencies=[
'camelx',
]

[project.urls]
Homepage = "https://github.com/vzool/zakat"
Issues = "https://github.com/vzool/zakat/issues"
Homepage = 'https://github.com/vzool/zakat'
Issues = 'https://github.com/vzool/zakat/issues'
26 changes: 20 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,27 @@

setup(
name='zakat',
packages=find_packages(include=['zakat']),
version='0.2.84',
version='0.2.85',
description='A Python Library for Islamic Financial Management.',
author='Abdelaziz Elrashed Elshaikh Mohamed',
install_requires=['camelx'],
author_email='aeemh.sdn@gmail.com',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires=">=3.10",
setup_requires=['pytest-runner'],
tests_require=['pytest==8.2.2'],
test_suite='tests',
packages=find_packages(
include=[
'zakat',
],
),
requires=[
'camelx',
],
)
2 changes: 1 addition & 1 deletion zakat/zakat_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def Version() -> str:
Returns:
str: The current version of the software.
"""
return '0.2.84'
return '0.2.85'

@staticmethod
def ZakatCut(x: float) -> float:
Expand Down

0 comments on commit 26aafc7

Please sign in to comment.