Compare commits
2 Commits
e3ffd2210b
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 5b69fe25b4 | |||
| 97d4d9c9a7 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -4,3 +4,4 @@
|
|||||||
*.egg-info
|
*.egg-info
|
||||||
doc/_build/
|
doc/_build/
|
||||||
*.ipynb_checkpoints/
|
*.ipynb_checkpoints/
|
||||||
|
fancymath.log
|
||||||
@@ -50,3 +50,6 @@ $ pip install -e .
|
|||||||
python -m line_profiler -rmt module_to_profile.py.lprof
|
python -m line_profiler -rmt module_to_profile.py.lprof
|
||||||
> python -m line_profiler -rmt module_to_profile.py.lprof
|
> python -m line_profiler -rmt module_to_profile.py.lprof
|
||||||
```
|
```
|
||||||
|
|
||||||
|
# Day 5 Resources
|
||||||
|
- [5 Worlds](https://www.joelonsoftware.com/2002/05/06/five-worlds/) from Joel Spolsky's blog.
|
||||||
|
|||||||
@@ -17,7 +17,13 @@ release = '0.0.1'
|
|||||||
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]
|
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]
|
||||||
|
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.ipynb_checkpoints']
|
exclude_patterns = [
|
||||||
|
'_build',
|
||||||
|
'Thumbs.db',
|
||||||
|
'.DS_Store',
|
||||||
|
'.ipynb_checkpoints',
|
||||||
|
'api/.ipynb_checkpoints'
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user