Skip to content

Commit ae69a41

Browse files
committed
Improved build and distribution now works with buildout
1 parent acb45ba commit ae69a41

File tree

4 files changed

+531
-16
lines changed

4 files changed

+531
-16
lines changed

.gitignore

+25-7
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,34 @@
66
# Copyright 2011 Alexander Rudy. All rights reserved.
77
#
88

9+
# Compiled Python Files
910
*.pyc
10-
Logs/*
11+
12+
# Development
1113
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
1234
Docs/build/*
13-
Tests/*.png
14-
Tests/*.jpg
15-
Tests/*.fits
35+
36+
# TESTS
1637
.noseids
1738
.coverage
1839
experiment.py
19-
*.egg-info
20-
*.egg
21-
Caches/*

buildout.cfg

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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}

0 commit comments

Comments
 (0)