##// END OF EJS Templates
Fixing a few small bugs in the setup.py scripts. In setupbase.py, in find_scripts, ipython...
Fixing a few small bugs in the setup.py scripts. In setupbase.py, in find_scripts, ipython was spelled as lowercase. This didn't cause a problem on OS X as it is case insensitive. But on Linux, it crashed. Now ipython is spelled properly as "IPython". Also, kernel/config/tests and UserConfig were missing their __init__.py files. These have been added.

File last commit:

r1234:52b55407
r1254:19bd8e77
Show More
simple.spec.conf
14 lines | 353 B | text/plain | TextLexer
# Toy example of a TConfig-based configuration description
# This is the class declaration for the configuration:
# SimpleConfig
# Configuration for my application
datafile = string(default='data.txt')
solver = option('Direct','Iterative')
[Protocol]
# Specify the Protocol
ptype = option('http','ftp','ssh')
max_users = integer(1,10)