From f4b92d63a175797f1521dd55dc5e8b6e220fec0b Mon Sep 17 00:00:00 2001 From: willian-virgilio Date: Mon, 18 Jul 2022 20:56:12 -0300 Subject: [PATCH 1/2] modificado, Willian testes --- .idea/.gitignore | 3 +++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/libpythonpro-1.iml | 15 +++++++++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ README.md | 1 + requirements-dev.txt | 9 +++++++++ 7 files changed, 48 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/libpythonpro-1.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 requirements-dev.txt diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..26d33521 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 00000000..105ce2da --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/libpythonpro-1.iml b/.idea/libpythonpro-1.iml new file mode 100644 index 00000000..5fdd65ba --- /dev/null +++ b/.idea/libpythonpro-1.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..63512f0e --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md index 676c14d7..1bf9ed33 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Link para o curso [Python Pro](https://www.python.pro.br/) [![Updates](https://pyup.io/repos/github/pythonprobr/libpythonpro/shield.svg)](https://pyup.io/repos/github/pythonprobr/libpythonpro/) [![Python 3](https://pyup.io/repos/github/pythonprobr/libpythonpro/python-3-shield.svg)](https://pyup.io/repos/github/pythonprobr/libpythonpro/) [![codecov](https://codecov.io/gh/pythonprobr/libpythonpro/branch/master/graph/badge.svg)](https://codecov.io/gh/pythonprobr/libpythonpro) +[![Build Status](https://app.travis-ci.com/willian-virgilio/libpythonpro-1.svg?branch=master)](https://app.travis-ci.com/willian-virgilio/libpythonpro-1) Suportada versão 3 de Python diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 00000000..1c706cdb --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,9 @@ +certifi==2022.6.15 +charset-normalizer==2.1.0 +flake8==4.0.1 +idna==3.3 +mccabe==0.6.1 +pycodestyle==2.8.0 +pyflakes==2.4.0 +requests==2.28.1 +urllib3==1.26.10 From bb419e505986f145271893cb224df10c7f66b3e9 Mon Sep 17 00:00:00 2001 From: willian-virgilio Date: Sat, 20 Aug 2022 11:42:53 -0300 Subject: [PATCH 2/2] tag 0.3 --- .idea/libpythonpro-1.iml | 2 +- .idea/misc.xml | 4 ++++ libpythonpro/tests/__init__.py | 1 + libpythonpro/tests/test_exemplo2.py | 2 ++ requirements-dev.txt | 9 +++++++++ setup.py | 6 +++--- 6 files changed, 20 insertions(+), 4 deletions(-) create mode 100644 .idea/misc.xml create mode 100644 libpythonpro/tests/test_exemplo2.py diff --git a/.idea/libpythonpro-1.iml b/.idea/libpythonpro-1.iml index 5fdd65ba..86055dcc 100644 --- a/.idea/libpythonpro-1.iml +++ b/.idea/libpythonpro-1.iml @@ -2,7 +2,7 @@ - + diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 00000000..d56657ad --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/libpythonpro/tests/__init__.py b/libpythonpro/tests/__init__.py index e69de29b..b6940201 100644 --- a/libpythonpro/tests/__init__.py +++ b/libpythonpro/tests/__init__.py @@ -0,0 +1 @@ +__version__='0.3' \ No newline at end of file diff --git a/libpythonpro/tests/test_exemplo2.py b/libpythonpro/tests/test_exemplo2.py new file mode 100644 index 00000000..775ac58e --- /dev/null +++ b/libpythonpro/tests/test_exemplo2.py @@ -0,0 +1,2 @@ +def test_int(): + assert 1 == 1 \ No newline at end of file diff --git a/requirements-dev.txt b/requirements-dev.txt index 1c706cdb..966f6e1a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -7,3 +7,12 @@ pycodestyle==2.8.0 pyflakes==2.4.0 requests==2.28.1 urllib3==1.26.10 +attrs>=19.2.0 +tomli>=1.0.0 +py>=1.8.2 +pluggy >=0.12 +pyparsing==2.0.2 +pytest==7.1.2 +iniconfig==1.1.1 +packaging==21.3 + diff --git a/setup.py b/setup.py index 1fea97a6..748bd0ac 100644 --- a/setup.py +++ b/setup.py @@ -104,9 +104,9 @@ def find_package_data( PACKAGE = "libpythonpro" NAME = PACKAGE DESCRIPTION = "Módulo para exemplificar construção de projetos Python no curso PyTools" -AUTHOR = "Renzo Nuccitelli" -AUTHOR_EMAIL = "renzo@python.pro.br" -URL = "https://github.com/pythonprobr/libpythonpro" +AUTHOR = "willian virgilio" +AUTHOR_EMAIL = "will.you@python.pro.br" +URL = "https://github.com/willian-virgilio/libpythonpro-1" VERSION = __import__(PACKAGE).__version__ setup(