-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from jesuejunior/master
Fixing codecov version and adding some file for a good test env
- Loading branch information
Showing
7 changed files
with
81 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
[report] | ||
omit = | ||
**/__main__.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Extensions | ||
*.pyc | ||
/.git | ||
*.swp | ||
*.swo | ||
.DS_Store | ||
*.sqlite3 | ||
.idea | ||
*.md | ||
*.log | ||
|
||
# files | ||
README.md | ||
docker-compose.yml | ||
|
||
# folders | ||
dist/ | ||
build/ | ||
tyrion.egg-info/ | ||
.mypy_cache/ | ||
.pytest_cache | ||
.circleci/ | ||
.coverage | ||
|
||
test | ||
*.*.*.test* | ||
.cache | ||
__pycache__ | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
bin | ||
develop-eggs | ||
.installed.cfg | ||
|
||
# Installer logs | ||
pip-log.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Pipfile.lock linguist-generated=true | ||
docs/* linguist-generated=true | ||
docs-src/locale/* linguist-generated=true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[pycodestyle] | ||
# ignore | ||
# - line-length (black já corrige) | ||
# - line break before binary operator | ||
ignore = E501, W503 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from codecs import open # To use a consistent encoding | ||
from os import path | ||
|
||
from setuptools import find_packages, setup # Always prefer setuptools over distutils | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
setup( | ||
name="python-boilerplate", | ||
version="0.0.1", | ||
description="Python Boilerplate Project", | ||
long_description="", | ||
url="https://github.com/daltonmatos/python-boilerplate", | ||
# Author details | ||
author="Dalton Matos", | ||
author_email="daltonmatos@gmail.com", | ||
license="MIT", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
packages=find_packages(exclude=["contrib", "docs", "tests*"]), | ||
test_suite="tests", | ||
install_requires=[], | ||
entry_points={}, | ||
) |