Now using Python's distutils for installing the Python modules into the wrong place and python-support for moving them into the right place, byte-compiling, and all that jazz.pull/5/head
parent
986151bca6
commit
9a56175919
@ -1,3 +1,3 @@ |
||||
#!/usr/bin/python2.4 -- |
||||
#!/usr/bin/python |
||||
import csc.apps.urwid.main |
||||
csc.apps.urwid.main.start() |
||||
|
@ -1,3 +1,4 @@ |
||||
/ceo.substvars |
||||
/ceo |
||||
/files |
||||
/*.debhelper |
||||
|
@ -1 +1 @@ |
||||
4 |
||||
5 |
||||
|
@ -0,0 +1,3 @@ |
||||
usr/bin |
||||
etc/csc |
||||
etc/ldap/schema |
@ -0,0 +1 @@ |
||||
docs/* |
@ -0,0 +1,2 @@ |
||||
etc/accounts.cf etc/kerberos.cf etc/ldap.cf etc/csc |
||||
etc/csc.schema etc/ldap/schema |
@ -0,0 +1,12 @@ |
||||
#!/usr/bin/env python |
||||
|
||||
from distutils.core import setup |
||||
|
||||
setup( |
||||
name='ceo', |
||||
description='CSC Electronic Office', |
||||
packages=[ 'csc', 'csc.common', 'csc.adm', 'csc.backends', 'csc.apps', 'csc.apps.urwid' ], |
||||
package_dir = {'': 'pylib'}, |
||||
scripts=['bin/ceo', 'bin/ceoquery', 'bin/csc-chfn', 'bin/csc-chsh'], |
||||
) |
||||
|
Loading…
Reference in new issue