Skip to content

Commit d2d7acd

Browse files
authored
Merge pull request #7 from pythonhealthdatascience/tom
Tom - old man slow review
2 parents 439bfe7 + aafe31a commit d2d7acd

File tree

4 files changed

+1986
-264
lines changed

4 files changed

+1986
-264
lines changed

.gitignore

Lines changed: 171 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,174 @@ __pycache__
33
.pytest_cache
44
.pytype
55

6-
*.log
6+
*.log
7+
8+
# vscode
9+
.vscode/*
10+
11+
# Jupyter book html
12+
_build/
13+
14+
# Byte-compiled / optimized / DLL files
15+
__pycache__/
16+
*.py[cod]
17+
*$py.class
18+
19+
# C extensions
20+
*.so
21+
22+
# Distribution / packaging
23+
.Python
24+
build/
25+
develop-eggs/
26+
dist/
27+
downloads/
28+
eggs/
29+
.eggs/
30+
lib/
31+
lib64/
32+
parts/
33+
sdist/
34+
var/
35+
wheels/
36+
share/python-wheels/
37+
*.egg-info/
38+
.installed.cfg
39+
*.egg
40+
MANIFEST
41+
42+
# PyInstaller
43+
# Usually these files are written by a python script from a template
44+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
45+
*.manifest
46+
*.spec
47+
48+
# Installer logs
49+
pip-log.txt
50+
pip-delete-this-directory.txt
51+
52+
# Unit test / coverage reports
53+
htmlcov/
54+
.tox/
55+
.nox/
56+
.coverage
57+
.coverage.*
58+
.cache
59+
nosetests.xml
60+
coverage.xml
61+
*.cover
62+
*.py,cover
63+
.hypothesis/
64+
.pytest_cache/
65+
cover/
66+
67+
# Translations
68+
*.mo
69+
*.pot
70+
71+
# Django stuff:
72+
*.log
73+
local_settings.py
74+
db.sqlite3
75+
db.sqlite3-journal
76+
77+
# Flask stuff:
78+
instance/
79+
.webassets-cache
80+
81+
# Scrapy stuff:
82+
.scrapy
83+
84+
# Sphinx documentation
85+
docs/_build/
86+
87+
# PyBuilder
88+
.pybuilder/
89+
target/
90+
91+
# Jupyter Notebook
92+
.ipynb_checkpoints
93+
94+
# IPython
95+
profile_default/
96+
ipython_config.py
97+
98+
# pyenv
99+
# For a library or package, you might want to ignore these files since the code is
100+
# intended to run in multiple environments; otherwise, check them in:
101+
# .python-version
102+
103+
# pipenv
104+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
105+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
106+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
107+
# install all needed dependencies.
108+
#Pipfile.lock
109+
110+
# poetry
111+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
112+
# This is especially recommended for binary packages to ensure reproducibility, and is more
113+
# commonly ignored for libraries.
114+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
115+
#poetry.lock
116+
117+
# pdm
118+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
119+
#pdm.lock
120+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
121+
# in version control.
122+
# https://pdm.fming.dev/#use-with-ide
123+
.pdm.toml
124+
125+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
126+
__pypackages__/
127+
128+
# Celery stuff
129+
celerybeat-schedule
130+
celerybeat.pid
131+
132+
# SageMath parsed files
133+
*.sage.py
134+
135+
# Environments
136+
.env
137+
.venv
138+
env/
139+
venv/
140+
ENV/
141+
env.bak/
142+
venv.bak/
143+
144+
# Spyder project settings
145+
.spyderproject
146+
.spyproject
147+
148+
# Rope project settings
149+
.ropeproject
150+
151+
# mkdocs documentation
152+
/site
153+
154+
# mypy
155+
.mypy_cache/
156+
.dmypy.json
157+
dmypy.json
158+
159+
# Pyre type checker
160+
.pyre/
161+
162+
# pytype static type analyzer
163+
.pytype/
164+
165+
# Cython debug symbols
166+
cython_debug/
167+
168+
# PyCharm
169+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
170+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
171+
# and can be added to the global gitignore or merged into this file. For a more nuclear
172+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
173+
#.idea/
174+
175+
176+

environment.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: template-des
2+
channels:
3+
- conda-forge
24
dependencies:
5+
- black
36
- flake8=7.1.1
47
- ipykernel=6.29.5
5-
- jinja2=3.1.4
8+
- jinja2=3.1.5
69
- joblib=1.4.2
710
- nbformat=5.10.4
11+
- nbqa
812
- numpy=2.1.3
913
- pandas=2.2.3
1014
- pip=24.3.1
@@ -16,4 +20,4 @@ dependencies:
1620
- pip:
1721
- kaleido==0.2.1
1822
- pycodestyle_magic==0.5
19-
- -e .[dev]
23+
- -e .[dev]

0 commit comments

Comments
 (0)