Fixes Bug 1273 - aiokafka>0.7.0 needs extra dependency for python < 3.7.0
[osm/common.git] / .gitignore-common
1 # -*- 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
16 # 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
26 logs 
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
38 osm_common/local
39 osm_common/test/local
40
41 #local stuff files that end in ".temp" or folders called "temp"
42 *.temp
43 osm_common/temp
44 osm_common/test/temp
45
46 #distribution and package generation
47 build
48 dist
49 *.egg-info
50 *.egg-info
51 .eggs
52