Skip to content
This repository has been archived by the owner on Feb 10, 2024. It is now read-only.

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tarek berkane committed Jul 15, 2022
1 parent 4fdcbb3 commit 92cf1a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This Plugin is to integrate ePayment gateway with Chargily easily.

# Installation
```py
pip install chargily-epay-django
pip install chargily-epay-Django
```

## Create Payment model
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@


setup(
name="chargily-epay-django", # Required
version="0.0.1", # Required
name="chargily-epay-Django", # Required
version="0.0.2", # Required
description="Chargily ePay Gateway (Django Library)", # Optional
long_description=long_description, # Optional
long_description_content_type="text/markdown", # Optional (see note above)
url="https://github.com/Chargily/chargily-epay-django", # Optional
author="Tarek berkane", # Optional
author_email="tarekg320@example.com", # Optional
author="Chargily", # Optional
author_email=" developers@chargily.com ", # Optional
classifiers=[ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand All @@ -32,16 +32,16 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
include_package_data = True,
include_package_data=True,
keywords="e-pay, chargily, edahabia, cib, django", # Optional
package_dir={"": "src"}, # Optional
packages=find_packages(where="src"), # Required
python_requires=">=3.7",
install_requires=["chargily-epay"], # Optional
install_requires=["chargily-epay-python"], # Optional
project_urls={ # Optional
"Bug Reports": "https://github.com/Chargily/chargily-epay-django/issues",
"Funding": "https://donate.pypi.org",
"Say Thanks!": "https://github.com/Chargily",
"Source": "https://github.com/Chargily/chargily-epay-django/",
"Website": "https://chargily.com/",
},
)

0 comments on commit 92cf1a5

Please sign in to comment.