From 4d8192b89e3ab508410751deaa2089899411bde0 Mon Sep 17 00:00:00 2001 From: Debdut Goswami Date: Fri, 20 Mar 2020 01:15:24 +0530 Subject: [PATCH] public release --- requirements.txt | 4 ++-- setup.cfg | 3 +++ setup.py | 7 ++++++- 3 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 setup.cfg diff --git a/requirements.txt b/requirements.txt index 2ddca36..4a67ba6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,5 +3,5 @@ #### ESSENTIAL LIBRARIES FOR MAIN FUNCTIONALITY #### -bs4 -Pillow +beautifulsoup4==4.8.2 +Pillow==7.0.0 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..9d5f797 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +# Inside of setup.cfg +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py index c8a51b9..4568956 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = fh.read() setuptools.setup( - name="ig-profile", # Replace with your own username + name="ig_profile", version="0.0.1", author="Debdut Goswami", author_email="debdutgoswami@gmail.com", @@ -12,7 +12,12 @@ long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/debdutgoswami/instagram-profile-picture", + download_url = 'https://github.com/debdutgoswami/instagram-profile-picture/archive/v_0.0.1.tar.gz', packages=setuptools.find_packages(), + install_requires=[ + 'beautifulsoup4', + 'Pillow' + ], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",