File tree 4 files changed +531
-16
lines changed
4 files changed +531
-16
lines changed Original file line number Diff line number Diff line change 6
6
# Copyright 2011 Alexander Rudy. All rights reserved.
7
7
#
8
8
9
+ # Compiled Python Files
9
10
* .pyc
10
- Logs /*
11
+
12
+ # Development
11
13
TODO /*
14
+
15
+ # Distribution
16
+ * .egg-info
17
+ * .egg
18
+ dist /*
19
+ build /*
20
+
21
+ # Buildout
22
+ bin /*
23
+ develop-eggs /*
24
+ parts /*
25
+ eggs /*
26
+ .installed.cfg
27
+
28
+ # Ephemeral Files
29
+ Logs /*
30
+ Caches /*
31
+ Data /*
32
+
33
+ # Documentation
12
34
Docs /build /*
13
- Tests /* .png
14
- Tests /* .jpg
15
- Tests /* .fits
35
+
36
+ # TESTS
16
37
.noseids
17
38
.coverage
18
39
experiment.py
19
- * .egg-info
20
- * .egg
21
- Caches /*
Original file line number Diff line number Diff line change
1
+ [buildout]
2
+ develop = .
3
+ parts =
4
+ AstroObject
5
+ tests
6
+
7
+ [AstroObject]
8
+ recipe = zc.recipe.egg:scripts
9
+ eggs = AstroObject
10
+ interpreter = python
11
+
12
+ [tests]
13
+ recipe = pbp.recipe.noserunner
14
+ eggs = pbp.recipe.noserunner
15
+ working-directory = ${buildout:directory}
You can’t perform that action at this time.
0 commit comments