+xvm-authz-locker (0.0.2) unstable; urgency=low
+
+ * Install the authz module as invirt.authz, instead of xvm.authz.locker
+
+ -- Evan Broder <broder@mit.edu> Mon, 21 Dec 2009 16:24:05 -0600
+
xvm-authz-locker (0.0.1) unstable; urgency=low
* Initial release.
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, invirt-base, python-afs
Provides: ${python:Provides}, invirt-authz
+Conflicts: invirt-authz
+Replaces: invirt-authz
XB-Python-Version: ${python:Versions}
Description: Authorization module for XVM
This package contains an authorization module for XVM. It supports
from os import path
from email.utils import parseaddr
from glob import glob
-from setuptools import setup, find_packages
+from setuptools import setup
try:
from debian_bundle.changelog import Changelog
maintainer=maintainer,
maintainer_email=maintainer_email,
- packages=find_packages('python'),
+ py_modules = ['invirt.authz'],
package_dir = {'': 'python'},
)