flepimop2-op-engine 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,187 @@
1
+ # ================================
2
+ # Python bytecode / cache
3
+ # ================================
4
+ __pycache__/
5
+ *.py[codz]
6
+ *$py.class
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # ================================
12
+ # Distribution / packaging
13
+ # ================================
14
+ .Python
15
+ build/
16
+ develop-eggs/
17
+ dist/
18
+ downloads/
19
+ eggs/
20
+ .eggs/
21
+ lib/
22
+ lib64/
23
+ parts/
24
+ sdist/
25
+ var/
26
+ wheels/
27
+ share/python-wheels/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+ MANIFEST
32
+
33
+ # ================================
34
+ # PyInstaller
35
+ # ================================
36
+ *.manifest
37
+ *.spec
38
+
39
+ # ================================
40
+ # Logs / coverage / testing
41
+ # ================================
42
+ pip-log.txt
43
+ pip-delete-this-directory.txt
44
+
45
+ htmlcov/
46
+ .tox/
47
+ .nox/
48
+ .coverage
49
+ .coverage.*
50
+ .cache
51
+ nosetests.xml
52
+ coverage.xml
53
+ *.cover
54
+ *.py.cover
55
+ .hypothesis/
56
+ .pytest_cache/
57
+ cover/
58
+
59
+ # ================================
60
+ # Localization
61
+ # ================================
62
+ *.mo
63
+ *.pot
64
+
65
+ # ================================
66
+ # Framework-specific
67
+ # ================================
68
+ *.log
69
+ local_settings.py
70
+ db.sqlite3
71
+ db.sqlite3-journal
72
+
73
+ instance/
74
+ .webassets-cache
75
+ .scrapy
76
+
77
+ docs/_build/
78
+
79
+ .pybuilder/
80
+ target/
81
+
82
+ # ================================
83
+ # Jupyter / IPython
84
+ # ================================
85
+ .ipynb_checkpoints
86
+ profile_default/
87
+ ipython_config.py
88
+
89
+ # ================================
90
+ # Python env managers
91
+ # ================================
92
+ .python-version
93
+
94
+ # ================================
95
+ # Dependency managers
96
+ # ================================
97
+ uv.lock
98
+
99
+ .pdm-python
100
+ .pdm-build/
101
+
102
+ .pixi
103
+
104
+ __pypackages__/
105
+
106
+ # ================================
107
+ # Runtime artifacts
108
+ # ================================
109
+ celerybeat-schedule
110
+ celerybeat.pid
111
+
112
+ *.sage.py
113
+
114
+ # ================================
115
+ # Virtual environments
116
+ # ================================
117
+ .env
118
+ .envrc
119
+ .venv
120
+ env/
121
+ venv/
122
+ ENV/
123
+ env.bak/
124
+ venv.bak/
125
+
126
+ # ================================
127
+ # IDEs / Editors
128
+ # ================================
129
+ .vscode/
130
+ .spyderproject
131
+ .spyproject
132
+ .ropeproject
133
+
134
+ /site
135
+
136
+ .mypy_cache/
137
+ .dmypy.json
138
+ dmypy.json
139
+
140
+ .pyre/
141
+ .pytype/
142
+
143
+ cython_debug/
144
+
145
+ .ruff_cache/
146
+
147
+ .pypirc
148
+
149
+ .cursorignore
150
+ .cursorindexingignore
151
+
152
+ marimo/_static/
153
+ marimo/_lsp/
154
+ __marimo__/
155
+
156
+ # ================================
157
+ # macOS / Apple filesystem junk
158
+ # ================================
159
+ .DS_Store
160
+ .AppleDouble
161
+ .LSOverride
162
+ ._*
163
+ .Spotlight-V100
164
+ .Trashes
165
+ .VolumeIcon.icns
166
+ .fseventsd
167
+ .Rhistory
168
+
169
+ # ================================
170
+ # Example output artifacts
171
+ # ================================
172
+
173
+ # Matplotlib / plotting outputs
174
+ *.png
175
+ *.pdf
176
+ *.svg
177
+
178
+ # Numpy saved arrays
179
+ *.npy
180
+ *.npz
181
+
182
+ # CSV outputs from examples
183
+ *.csv
184
+
185
+ # Optional example output directory convention
186
+ examples/output/
187
+