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..86055dcc --- /dev/null +++ b/.idea/libpythonpro-1.iml @@ -0,0 +1,15 @@ + + + + + + + + + + + + \ No newline at end of file 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/.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/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 new file mode 100644 index 00000000..966f6e1a --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,18 @@ +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 +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(