-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
50 lines (37 loc) · 1018 Bytes
/
.gitignore
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# The virtual environment and cached python files
venv/*
*.pyc
# serialized pypsa networks except one for testing the service
input/*.json
!input/toy_network.json
!input/test_service_input.json
!input/config.json
# pypsa input networks
input/networks/*
input/!defaultnetwork.nc
input/!network_4qubit_2_bus.nc
# ignore yaml (config) files except the example
input/configs/*.yaml
input/!configs/config-all.yaml
# local optimization results
results_*
# indicator file for the last time the docker image was built
.docker.tmp
# ignore zip file for service building and the test result of testing it
*.zip
JobResponse
# jupyter notebooks
.ipynb_checkpoints/
*.ipynb
# any plots and the file that has a receipe for making plots.
# make_plots_example.py contains an exampe how to use the plot scripts
make_plots.py
plots/*
# created in root when running gui test script
url.txt
# additional files that are not ready to be published
statistics
tosca_artifacts
scripts/*plot*.py
# editor generated files
.vscode/**