Skip to content

Commit 4807b4b

Browse files
[refactor] added documentation (#12)
1 parent 329d2ec commit 4807b4b

4 files changed

Lines changed: 353 additions & 125 deletions

File tree

.gitignore

Lines changed: 49 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1+
# Python
12
# Byte-compiled / optimized / DLL files
23
__pycache__/
34
*.py[cod]
45
*$py.class
56

6-
# C extensions
7-
*.so
8-
97
# Distribution / packaging
108
.Python
119
build/
@@ -27,8 +25,6 @@ share/python-wheels/
2725
MANIFEST
2826

2927
# PyInstaller
30-
# Usually these files are written by a python script from a template
31-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3228
*.manifest
3329
*.spec
3430

@@ -55,20 +51,20 @@ cover/
5551
*.mo
5652
*.pot
5753

58-
# Django stuff:
54+
# Django
5955
*.log
6056
local_settings.py
6157
db.sqlite3
6258
db.sqlite3-journal
6359

64-
# Flask stuff:
60+
# Flask
6561
instance/
6662
.webassets-cache
6763

68-
# Scrapy stuff:
64+
# Scrapy
6965
.scrapy
7066

71-
# Sphinx documentation
67+
# Sphinx
7268
docs/_build/
7369

7470
# PyBuilder
@@ -82,41 +78,15 @@ target/
8278
profile_default/
8379
ipython_config.py
8480

85-
# pyenv
86-
# For a library or package, you might want to ignore these files since the code is
87-
# intended to run in multiple environments; otherwise, check them in:
88-
# .python-version
89-
90-
# pipenv
91-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94-
# install all needed dependencies.
95-
#Pipfile.lock
96-
97-
# poetry
98-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99-
# This is especially recommended for binary packages to ensure reproducibility, and is more
100-
# commonly ignored for libraries.
101-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102-
#poetry.lock
103-
104-
# pdm
105-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106-
#pdm.lock
107-
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108-
# in version control.
109-
# https://pdm.fming.dev/#use-with-ide
81+
# PDM (Python package manager)
11082
.pdm.toml
111-
112-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
11383
__pypackages__/
11484

115-
# Celery stuff
85+
# Celery
11686
celerybeat-schedule
11787
celerybeat.pid
11888

119-
# SageMath parsed files
89+
# SageMath
12090
*.sage.py
12191

12292
# Environments
@@ -128,52 +98,70 @@ ENV/
12898
env.bak/
12999
venv.bak/
130100

131-
# Spyder project settings
132-
.spyderproject
133-
.spyproject
134-
135-
# Rope project settings
136-
.ropeproject
137-
138-
# mkdocs documentation
101+
# MkDocs
139102
/site
140103

141-
# mypy
104+
# Static type checkers
142105
.mypy_cache/
143106
.dmypy.json
144107
dmypy.json
145-
146-
# Pyre type checker
147108
.pyre/
148-
149-
# pytype static type analyzer
150109
.pytype/
151110

152111
# Cython debug symbols
153112
cython_debug/
154113

114+
# C++
155115
# Prerequisites
156116
*.d
157117

118+
# Precompiled Headers
119+
*.gch
120+
*.pch
121+
122+
# Build directories
123+
cmake-build-debug/
124+
out/
125+
x64/
126+
127+
# Fortran
128+
*.mod
129+
*.smod
130+
131+
# Redis
132+
*.rdb
133+
134+
# Visual Studio
135+
*.sln
136+
*.vcxproj
137+
*.vcxproj.filters
138+
*.vcxproj.user
139+
.vs/
140+
141+
# Visual Studio Code
142+
.vscode/
143+
144+
# JetBrains
145+
.idea/
146+
147+
# Spyder
148+
.spyderproject
149+
.spyproject
150+
151+
# Rope
152+
.ropeproject
153+
158154
# Compiled Object files
159155
*.slo
160156
*.lo
161157
*.o
162158
*.obj
163159

164-
# Precompiled Headers
165-
*.gch
166-
*.pch
167-
168160
# Compiled Dynamic libraries
169161
*.so
170162
*.dylib
171163
*.dll
172164

173-
# Fortran module files
174-
*.mod
175-
*.smod
176-
177165
# Compiled Static libraries
178166
*.lai
179167
*.la
@@ -185,26 +173,5 @@ cython_debug/
185173
*.out
186174
*.app
187175

188-
# temp
189-
.DS_Store
190-
.vs
191-
192-
#dirs
193-
out
194-
x64
195-
cmake-build-debug
196-
197-
# Redis
198-
*.rdb
199-
200-
# Visual Studio
201-
*.sln
202-
*.vcxproj
203-
*.vcxproj.filters
204-
*.vcxproj.user
205-
206-
# Visual Studio Code
207-
.vscode
208-
209-
# JetBrains
210-
.idea/
176+
# macOS
177+
.DS_Store
File renamed without changes.

0 commit comments

Comments
 (0)