Skip to content

Commit

Permalink
Merge pull request #7 from matheusfelipeog/fix/build-and-requirements
Browse files Browse the repository at this point in the history
Fordev v1.0.1
  • Loading branch information
matheusfelipeog committed Mar 17, 2021
2 parents ccafb4c + 732af31 commit 9536c68
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ name = "pypi"
[packages]
requests = "==2.24.0"
beautifulsoup4 = "==4.9.3"
colorama = "==0.4.4"

[dev-packages]
pylint = "2.7.2"
Expand Down
12 changes: 10 additions & 2 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion docs/docs_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
requests==2.24.0
beautifulsoup4==4.9.3
beautifulsoup4==4.9.3
colorama==0.4.4
2 changes: 1 addition & 1 deletion fordev/__about__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""Metadados do projeto."""

__version__ = '1.0.0'
__version__ = '1.0.1'
__author__ = 'Matheus Felipe'
__email__ = 'matheusfelipeog@protonmail.com'
__author_github__ = 'https://github.com/matheusfelipeog'
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,13 @@ def run(self):
author=__author__,
author_email=__email__,
url='https://github.com/matheusfelipeog/fordev',
packages=find_packages(),
packages=find_packages(
exclude=('tests',)
),
install_requires=[
'requests',
'beautifulsoup4'
'beautifulsoup4',
'colorama'
],
zip_safe=False,
python_requires='>=3.6',
Expand Down

0 comments on commit 9536c68

Please sign in to comment.