Jose Diaz-Gonzalez
commited on
Commit
·
4bd1326
1
Parent(s):
d49484e
add necessary gitignore entries
Browse filesThis will allow us to build packages without worrying about build artifacts
- .gitignore +27 -8
.gitignore
CHANGED
@@ -1,8 +1,27 @@
|
|
1 |
-
*.
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
*.py[oc]
|
2 |
+
|
3 |
+
# Temp files
|
4 |
+
*~
|
5 |
+
~*
|
6 |
+
.*~
|
7 |
+
\#*
|
8 |
+
.#*
|
9 |
+
*#
|
10 |
+
dist
|
11 |
+
|
12 |
+
# Build files
|
13 |
+
build
|
14 |
+
dist
|
15 |
+
pkg
|
16 |
+
*.egg
|
17 |
+
*.egg-info
|
18 |
+
|
19 |
+
# Debian Files
|
20 |
+
debian/files
|
21 |
+
debian/python-beaver*
|
22 |
+
|
23 |
+
# Sphinx build
|
24 |
+
doc/_build
|
25 |
+
|
26 |
+
# Generated man page
|
27 |
+
doc/aws_hostname.1
|