1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| # Python compiler files
| *.py[cd]
|
| # Python distribution and packaging
| build/
| dist/
| temp/
| *.cfg
| *.egg-info/
| *.whl
|
| # SWIG generated files
| epanet_output_wrap.c
| epanet_output.py
|
| # C compiler
| *.o
| *.dll
| *.exe
|
| # Eclipse project files and directories
| .metadata/
| .settings/
| Release/
| .project
| .cproject
| .pydevproject
|
|