Skip to content

Commit 8757d31

Browse files
committed
Add boilerplate files
0 parents  commit 8757d31

File tree

4 files changed

+586
-0
lines changed

4 files changed

+586
-0
lines changed

.gitignore

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
MANIFEST
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
.pytest_cache/
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
db.sqlite3
58+
59+
# Flask stuff:
60+
instance/
61+
.webassets-cache
62+
63+
# Scrapy stuff:
64+
.scrapy
65+
66+
# Sphinx documentation
67+
docs/_build/
68+
69+
# PyBuilder
70+
target/
71+
72+
# Jupyter Notebook
73+
.ipynb_checkpoints
74+
75+
# pyenv
76+
.python-version
77+
78+
# celery beat schedule file
79+
celerybeat-schedule
80+
81+
# SageMath parsed files
82+
*.sage.py
83+
84+
# Environments
85+
.env
86+
.venv
87+
env/
88+
venv/
89+
ENV/
90+
env.bak/
91+
venv.bak/
92+
93+
# Spyder project settings
94+
.spyderproject
95+
.spyproject
96+
97+
# Rope project settings
98+
.ropeproject
99+
100+
# mkdocs documentation
101+
/site
102+
103+
# mypy
104+
.mypy_cache/
105+
106+
# editor back files
107+
*~
108+
*.swp
109+
*.bak
110+
~$python_for_data_science.pptx

CONTRIBUTING.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Contributing
2+
3+
You are very welcome to contribute to this repository.
4+
5+
6+
## How to contribute?
7+
8+
This can be done in several ways, depending on how familiar you are with
9+
the GitHub workflow:
10+
11+
* simply send an [email](geertjan.bex@uhasselt.be),
12+
* [create an issue](https://help.github.com/articles/creating-an-issue/)
13+
on GitHub, or
14+
* [fork the repository](https://help.github.com/articles/fork-a-repo/)
15+
on GitHub, create a branch based on the development
16+
branch, make your contribution, and submit a
17+
[pull request](https://help.github.com/articles/about-pull-requests/).
18+
19+
For pull requests, a few things should be noted:
20+
21+
* you may be asked to modify your contribution to fit better into
22+
the context,
23+
* please base them on the development branch,
24+
* please ensure your branch is in sync with the upstream development
25+
branch before submitting the pull request,
26+
* please try to use [informative commit messages](https://chris.beams.io/posts/git-commit/)
27+
(I'm not claiming that mine are shining examples, but well...), and
28+
* if you want to suggest modifications to PowerPoint presentations,
29+
please make a copy of the original presentation, modify it, and add it.
30+
31+
Since from `git`'s perspective, PowerPoint files are just binary files,
32+
a merge can only be done using Microsoft's PowerPoint application by
33+
comparing two PowerPoint files.
34+
35+
Of course, although all contributions are very much appreciated, some of
36+
them might not be integrated into the material. If that should happen,
37+
I'll try to justify that decision, and it can be discussed.
38+
39+
40+
## Citation and licensing
41+
42+
For contributions in general,
43+
44+
* if you make a contribution, this will be mentioned in the
45+
[README](README.md), unless requested otherwise;
46+
* contributions will be under the same [license as this repository](LICENSE).
47+
48+
49+
## What can you contribute?
50+
51+
Basically, anything you like, e.g.,
52+
53+
* corrections of typos,
54+
* bug fixes in sample code,
55+
* additional sample code,
56+
* extra or alternative slides in presentations,
57+
* a section in a presentation,
58+
* a new subject, or aspect of an existing subject.

0 commit comments

Comments
 (0)