patchsim 0.1.0b1__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,188 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ *.vscode
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ build/
14
+ develop-eggs/
15
+ dist/
16
+ downloads/
17
+ eggs/
18
+ .eggs/
19
+ lib/
20
+ lib64/
21
+ parts/
22
+ sdist/
23
+ var/
24
+ wheels/
25
+ pip-wheel-metadata/
26
+ share/python-wheels/
27
+ *.egg-info/
28
+ .installed.cfg
29
+ *.egg
30
+ MANIFEST
31
+
32
+ # PyInstaller
33
+ # Usually these files are written by a python script from a template
34
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
35
+ *.manifest
36
+ *.spec
37
+
38
+ # Installer logs
39
+ pip-log.txt
40
+ pip-delete-this-directory.txt
41
+
42
+ # Unit test / coverage reports
43
+ htmlcov/
44
+ .tox/
45
+ .nox/
46
+ .coverage
47
+ .coverage.*
48
+ .cache
49
+ nosetests.xml
50
+ coverage.xml
51
+ *.cover
52
+ *.py,cover
53
+ .hypothesis/
54
+ .pytest_cache/
55
+ pytest_cache/
56
+
57
+ # Translations
58
+ *.mo
59
+ *.pot
60
+
61
+ # Django stuff:
62
+ *.log
63
+ local_settings.py
64
+ db.sqlite3
65
+ db.sqlite3-journal
66
+
67
+ # Flask stuff:
68
+ instance/
69
+ .webassets-cache
70
+
71
+ # Scrapy stuff:
72
+ .scrapy
73
+
74
+ # Sphinx documentation
75
+ docs/_build/
76
+
77
+ # PyBuilder
78
+ target/
79
+
80
+ # Jupyter Notebook
81
+ .ipynb_checkpoints
82
+
83
+ # IPython
84
+ profile_default/
85
+ ipython_config.py
86
+
87
+ # pyenv
88
+ # .python-version is tracked for CI reproducibility
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
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
98
+ __pypackages__/
99
+
100
+ # Celery stuff
101
+ celerybeat-schedule
102
+ celerybeat.pid
103
+
104
+ # SageMath parsed files
105
+ *.sage.py
106
+
107
+ # Environments
108
+ .env
109
+ .venv
110
+ env/
111
+ venv/
112
+ ENV/
113
+ env.bak/
114
+ venv.bak/
115
+ .venv/
116
+
117
+ # Spyder project settings
118
+ .spyderproject
119
+ .spyproject
120
+
121
+ # Rope project settings
122
+ .ropeproject
123
+
124
+ # mkdocs documentation
125
+ /site
126
+
127
+ # mypy
128
+ .mypy_cache/
129
+ .dmypy.json
130
+ dmypy.json
131
+
132
+ # Pyre type checker
133
+ .pyre/
134
+ **__pycache__
135
+ **/__pycache__/
136
+
137
+ # PyCharm
138
+ .idea/
139
+
140
+ # RStudio project files
141
+ **.Rproj.user/
142
+ **.Rproj.user*
143
+ **.Rproj
144
+ **.Rhistory
145
+
146
+ # MacOS
147
+ .DS_Store
148
+
149
+ # Data file types
150
+ *.csv
151
+ *.txt
152
+ *.xlsx
153
+ output/**
154
+
155
+ # Keep package template scaffold files tracked
156
+ !src/patchsim/templates/project/data/
157
+ !src/patchsim/templates/project/data/networks/
158
+ !src/patchsim/templates/project/data/networks/*.csv
159
+ !src/patchsim/templates/project/data/patch/
160
+ !src/patchsim/templates/project/data/patch/*.csv
161
+ !src/patchsim/templates/project/data/seeds/
162
+ !src/patchsim/templates/project/data/seeds/*.csv
163
+ !src/patchsim/templates/project/output/.gitkeep
164
+
165
+ # Additions for GeoJSON, .zip files, and shapefiles
166
+ *.geojson
167
+ *.zip
168
+ *.shp
169
+ *.shx
170
+ *.dbf
171
+ *.prj
172
+
173
+ # Added entries for pytest cache, venv, pdm-build, and other relevant directories
174
+ .pdm-build/
175
+
176
+ # Exception for .png files in assets/
177
+ !assets/*.png
178
+
179
+ # Allow tracked data CSVs
180
+ !data/
181
+ !data/networks/
182
+ !data/networks/*.csv
183
+
184
+ !data/patch/
185
+ !data/patch/*.csv
186
+
187
+ !data/seeds/
188
+ !data/seeds/*.csv