Wrote the setup.py file with some sensible values. Most of the things
it describes does not exist, though.
This commit is contained in:
parent
3f9095a385
commit
164c0a877d
11
setup.py
11
setup.py
|
@ -1,3 +1,14 @@
|
|||
#
|
||||
# $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"])
|
||||
|
|
Reference in New Issue