Skip to content

Commit

Permalink
Initial commit - Create GitHub action
Browse files Browse the repository at this point in the history
Project setup including:
- Project structure
- Readme
- License
- Documentation
- Environment specifications
- Style configurations
- GitHub templates
  • Loading branch information
OliverSieweke committed May 5, 2020
0 parents commit daf3cb1
Show file tree
Hide file tree
Showing 44 changed files with 1,332 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
root = true

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

[{*.py,*.pyw}]
max_line_length = 88

[{*.yaml,*.yml}]
indent_size = 2
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'bug'
assignees: 'OliverSieweke'

---
[comment]: # (Specify the version used below.)
**version:** v0.1.0

### Description
[comment]: # (A clear and concise description of what the bug is.)

### Expected behavior
[comment]: # (A clear and concise description of what you expected to happen.)

### Configurations
[comment]: # (Paste the workflow YAML file here.)

```yaml
```

### Stack Trace
[comment]: # (Paste your actions error stack trace here if applicable.)

```txt
```

### Additional context
[comment]: # (Any additonal information that may be relevant.)


[comment]: # (Awesome! Thanks!)
13 changes: 13 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Description
[comment]: # (Please include a summary of the change and which issue is fixed if applicable.)

Fixes # (issue)

## Type of change

[comment]: # (Please delete options that are not relevant.)

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Documentation Build:
/docs/build
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions .idea/dictionaries/os.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

145 changes: 145 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/kaggle-graph.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit daf3cb1

Please sign in to comment.