-
Notifications
You must be signed in to change notification settings - Fork 0
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 #24 from c-hydro/dev
Dev
- Loading branch information
Showing
6 changed files
with
937 additions
and
107 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,48 @@ | ||
# The gitignore file lists files (and folders) that should be ignored by git. | ||
# Best practice is to ignore: | ||
## Generated Files (created in the build process, e.g. .pyc files) | ||
## Sensitive Information (passwords or API keys, e.g. .config, .env files) | ||
## User-Specific Files (including outputs of logs used for debugging) | ||
## Build Artifacts and Output (also results of running your code, e.g. /bin, /build folders) | ||
## Third-Party Libraries and Dependencies (including virtual environmen foldes such as /.venv or similar, DO commit a file that lists the dependencies, such as a requirements.txt) | ||
|
||
# TEMPLATES FOR .GITIGNORE FILES: https://github.com/github/gitignore | ||
|
||
# Example of a gitignore file for python projects | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
share/python-wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
# Environments | ||
.env* | ||
.venv* | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# IDEs and editors | ||
.vscode | ||
.idea |
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,7 @@ | ||
# Use the CODEOWNERS file to assign individual users as responsible for specific parts of the repository code. | ||
# example of CODEOWNERS file and more info can be found here: | ||
## https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#example-of-a-codeowners-file | ||
|
||
# You probably should assign yourself (i.e. the manager), as well as your co-manager(s) as owner(s) of the entire repository (uncomment below): | ||
# * @your-github-handle @other-ghithub-handle | ||
* @AndreaLibe |
Oops, something went wrong.