Skip to content

Commit

Permalink
Merge pull request #1 from acnazarejr/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
acnazarejr committed Apr 19, 2020
2 parents ca4fbfd + eda2bd6 commit a09432e
Show file tree
Hide file tree
Showing 12 changed files with 1,922 additions and 46 deletions.
25 changes: 25 additions & 0 deletions .editorconfig
@@ -0,0 +1,25 @@
root = true

[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
end_of_line = lf

[*.bat]
indent_style = tab
end_of_line = crlf

[*.sh]
end_of_line = lf

[*.md]
indent_size = 2

[LICENSE]
insert_final_newline = false

[Makefile]
indent_style = tab
58 changes: 14 additions & 44 deletions .gitignore
Expand Up @@ -8,6 +8,7 @@ __pycache__/

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
Expand All @@ -19,13 +20,9 @@ lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
Expand All @@ -40,16 +37,13 @@ pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
*,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
Expand All @@ -58,8 +52,6 @@ coverage.xml
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
Expand All @@ -74,56 +66,34 @@ docs/_build/
# PyBuilder
target/

# Jupyter Notebook
# IPython Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py
**/*.ipynb_checkpoints/

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
# celery beat schedule file
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
# dotenv
.env
.venv
env/

# virtualenv
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site
# Pycharm
.idea/

# mypy
.mypy_cache/
.dmypy.json
dmypy.json
.vscode/
.mypy_cache
.pytest_cache

# Pyre type checker
.pyre/
.acrosync
1 change: 1 addition & 0 deletions .mypy.ini
@@ -0,0 +1 @@
[mypy]

0 comments on commit a09432e

Please sign in to comment.