Skip to content

Commit

Permalink
added readme as description
Browse files Browse the repository at this point in the history
  • Loading branch information
talaatmagdyx committed Jun 4, 2024
1 parent 2ce1e7f commit a69b146
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ build-backend = "setuptools.build_meta"

[project]
name = "retry_plus"
version = "1.0.0"
version = "1.0.1"
description = "A generic retry package for Python"
readme = "README.md"
authors = [
{ name = "Talaat Magdy", email = "[email protected]" }
]
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[metadata]
name = retry_plus
version = 1.0.0
version = 1.0.1
description = A generic retry package for Python
long_description = file: README.md
long_description_content_type = text/markdown
author = Talaat Magdy
author_email = [email protected]
license = MIT
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='retry_plus',
version='1.0.0',
version='1.0.1',
description='A generic retry package for Python',
long_description=long_description,
long_description_content_type='text/markdown',
author='Talaat Magdy',
author_email='[email protected]',
packages=find_packages(),
license="MIT",
install_requires=[
'pytest',
'pytest-asyncio',
],
test_suite='tests',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit a69b146

Please sign in to comment.