Projects
/
mdb-ng
Archived
4
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
mdb-ng/setup.py

15 lines
357 B
Python

#
# $Id$
#
from distutils.core import setup
setup(name = "mdb-ng",
version = "0.1",
description = "Member database software for PVV",
author = "The mdb-ng coding team.",
author_email = "mdb-ng@dev.pvv.ntnu.no",
packages = ["mdb"],
package_dir = { 'mdb': 'lib/mdb' },
scripts = ["bin/mdb-query", "bin/mdb-admin"])