ContinuumIO / ctk

Consultant Toolkit
3 stars 7 forks source link

Prep setup.py #2

Closed tpn closed 10 years ago

tpn commented 10 years ago

Take a look at enversion/enversion/setup.py for an example.

Should be able to python setup.py install and get 'ctk' installed and importable in an import ctk perspective.

dlovell commented 10 years ago

fixed with merge commit e89440bbd617e8034166687cf067c1f8f08cb556

testable with

import os
import ctk

dirname=os.path.split(ctk.__file__)[0]
with open(os.path.join(dirname, "../conf/ctk.conf")) as fh:
    print 'I can open conf/ctk.conf'