Matt Jeanneret | f1e9c5d | 2019-02-08 07:41:29 -0500 | [diff] [blame] | 1 | # PyCharm |
| 2 | .idea |
| 3 | exportToHTML |
| 4 | |
| 5 | # Python |
| 6 | *.pyc |
| 7 | |
| 8 | # Emacs |
| 9 | *~ |
| 10 | .#* |
| 11 | |
| 12 | # Vagrant |
| 13 | .vagrant |
| 14 | *.box |
| 15 | |
| 16 | # venv |
| 17 | .venv |
| 18 | |
| 19 | # Ansible |
| 20 | ansible/*.retry |
| 21 | |
| 22 | # Any vi swap files |
| 23 | *.swp |
| 24 | |
| 25 | # Virtualenv |
| 26 | venv |
| 27 | venv-darwin |
| 28 | venv-linux |
| 29 | adapters/venv |
| 30 | adapters/venv-linux |
| 31 | adapters/venv-darwin |
| 32 | |
| 33 | # Protobuf output files |
| 34 | python/**/*_pb2.py |
| 35 | python/**/*_pb2_grpc.py |
| 36 | python/**/*.desc |
| 37 | protos/**/*.pb.go |
| 38 | protos/**/*.desc |
| 39 | protos/voltha.pb |
| 40 | |
| 41 | # Editors |
| 42 | *.bak |
| 43 | *.project |
| 44 | *.pydevproject |
| 45 | |
| 46 | # Docker |
| 47 | .docker-base-built |
| 48 | |
| 49 | # Mac stuff |
| 50 | .DS_Store |
| 51 | **/.DS_Store |
| 52 | |
| 53 | # Generated docs |
| 54 | **/*.pdf |
| 55 | |
| 56 | # Vagrant logfile |
| 57 | *.log |
| 58 | |
| 59 | # Files copied over during make |
| 60 | python/protos/*.proto |
| 61 | |
| 62 | # voltha cli history |
| 63 | python/cli/.voltha_cli_history |
| 64 | |
Matt Jeanneret | 72f96fc | 2019-02-11 10:53:05 -0500 | [diff] [blame] | 65 | # Development versions of locally built libraries |
| 66 | python/pyvoltha |
Matt Jeanneret | 7590c00 | 2019-03-07 06:42:53 -0500 | [diff] [blame] | 67 | python/voltha-protos |
Matt Jeanneret | 72f96fc | 2019-02-11 10:53:05 -0500 | [diff] [blame] | 68 | |