blob: 0019f5aac71490a3e12fe57cab3c5ca927e7cfad [file] [log] [blame]
tierno87858ca2018-10-08 16:30:15 +02001# -*- coding: utf-8 -*-
2
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12# implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
tierno5c012612018-04-19 16:01:59 +020016# This is a template with common files to be igonored, after clone make a copy to .gitignore
17# cp .gitignore-common .gitignore
18
19*.pyc
20*.pyo
21
22#auto-ignore
23.gitignore
24
25#logs
26logs
27
28#pycharm
29.idea
30
31#eclipse
32.project
33.pydevproject
34.settings
35
36#local stuff files that end in ".local" or folders called "local"
37*.local
38osm_common/local
39osm_common/test/local
40
41#local stuff files that end in ".temp" or folders called "temp"
42*.temp
43osm_common/temp
44osm_common/test/temp
45
46#distribution and package generation
47build
48dist
49*.egg-info
tiernob20a9022018-05-22 12:07:05 +020050*.egg-info
51.eggs
tierno5c012612018-04-19 16:01:59 +020052