Skip to content

Commit

Permalink
[added] Requirements in setup.py install
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmehemant7 committed Nov 25, 2022
1 parent 058d2cb commit 44e671d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 33 deletions.
27 changes: 0 additions & 27 deletions requirements.txt

This file was deleted.

8 changes: 2 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,9 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open('requirements.txt') as f:
required = f.read().splitlines()

setuptools.setup(
name="PyMovieDb",
version="0.0.4",
version="0.0.6",
author="Hemant Malik",
author_email="[email protected]",
description="A Python Module that represents IMDB API",
Expand All @@ -18,6 +15,5 @@
url="https://github.com/itsmehemant7/PyMovieDb",
packages=setuptools.find_packages(),
zip_safe=False,
install_requires=required,
python_requires='>=3.0'
install_requires=["requests-html"]
)

0 comments on commit 44e671d

Please sign in to comment.