forked from ooici/ion-functions
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbuildout.cfg
More file actions
40 lines (30 loc) · 760 Bytes
/
buildout.cfg
File metadata and controls
40 lines (30 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[buildout]
develop =
.
parts =
python
eggs =
ion-functions
unzip = true
show-picked-versions = true
# extends = versions.cfg
versions = versions
[versions]
# Using our server instead of Pypi for indexing when Pypi goes wrong
# index = http://sddevrepo.oceanobservatories.org/releases/
# When set to false, buildout and its recipe versions must be
# explicitly pinned down and defined.
allow-picked-versions = true
# Tells buildout where to download packages in addition to Pypi.
find-links =
http://sddevrepo.oceanobservatories.org/releases/
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${buildout:eggs}
scripts =
ipython
nosetests
entry-points =
ipython=scripts.ipython:main
nosetests=nose:run_exit