Skip to content

Commit 9536c68

Browse files
Merge pull request #7 from matheusfelipeog/fix/build-and-requirements
Fordev v1.0.1
2 parents ccafb4c + 732af31 commit 9536c68

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ name = "pypi"
66
[packages]
77
requests = "==2.24.0"
88
beautifulsoup4 = "==4.9.3"
9+
colorama = "==0.4.4"
910

1011
[dev-packages]
1112
pylint = "2.7.2"

Pipfile.lock

+10-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/docs_requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
requests==2.24.0
2-
beautifulsoup4==4.9.3
2+
beautifulsoup4==4.9.3
3+
colorama==0.4.4

fordev/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""Metadados do projeto."""
33

4-
__version__ = '1.0.0'
4+
__version__ = '1.0.1'
55
__author__ = 'Matheus Felipe'
66
__email__ = '[email protected]'
77
__author_github__ = 'https://github.com/matheusfelipeog'

setup.cfg

-2
This file was deleted.

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,13 @@ def run(self):
6363
author=__author__,
6464
author_email=__email__,
6565
url='https://github.com/matheusfelipeog/fordev',
66-
packages=find_packages(),
66+
packages=find_packages(
67+
exclude=('tests',)
68+
),
6769
install_requires=[
6870
'requests',
69-
'beautifulsoup4'
71+
'beautifulsoup4',
72+
'colorama'
7073
],
7174
zip_safe=False,
7275
python_requires='>=3.6',

0 commit comments

Comments
 (0)