Skip to content

Commit

Permalink
Update README.md and remove find_requires function
Browse files Browse the repository at this point in the history
  • Loading branch information
matheusfelipeog committed Sep 30, 2020
1 parent 9e93782 commit 64793c2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">
<p align="center">
<img src="https://raw.githubusercontent.com/matheusfelipeog/fordev/master/.github/assets/images/fordev.png" alt="Logo Fordev" width="500px" />
</h1>
</p>

<p align="center">
<img src="https://img.shields.io/github/license/matheusfelipeog/fordev?color=black&style=for-the-badge" alt="License MIT" />
Expand Down
16 changes: 4 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@
long_description = f.read()


def find_requires() -> list:
"""Find install requirements."""

with open('requirements.txt', mode='r', encoding='utf-8') as f:
all_requires = [
module.strip('\n\r') for module in f.readlines()
]

return all_requires


setup(
name='fordev',
version=__version__,
Expand All @@ -34,7 +23,10 @@ def find_requires() -> list:
author_email=__email__,
url='https://github.com/matheusfelipeog/fordev',
packages=find_packages(),
install_requires=find_requires(),
install_requires=[
'requests',
'beautifulsoup4'
],
zip_safe=False,
python_requires='>=3.6',
project_urls={
Expand Down

0 comments on commit 64793c2

Please sign in to comment.