rmmtools 0.1.0__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,41 @@
1
+ # Code-related and logs, etc
2
+ __pycache__
3
+ *.pyc
4
+ .ipynb_checkpoints
5
+ *.so
6
+ *.c
7
+ .vscode/
8
+ *.mypy_cache/**
9
+ .DS_Store
10
+ /.p*
11
+ dask-worker*
12
+ *.swp
13
+ /py/opdata_import
14
+ .vs
15
+ .idea
16
+ .env
17
+ venv
18
+ *.log
19
+
20
+ # Typical Pandas data formats
21
+ *.h5
22
+ *.feather
23
+ *.pq
24
+ *.parquet
25
+ /data
26
+
27
+ # Don't check in your creds and keys
28
+ *.user
29
+ *.pem
30
+ *.pfx
31
+ *.pwd
32
+ .dbconfig
33
+ .dbcreds
34
+
35
+ # Optimization-model-related files
36
+ *.lp
37
+ *.mps
38
+ *.ilp
39
+
40
+ # Any dir called "hide" won't get checked in, so you can stash local stuff temporarily
41
+ hide