diff --git a/py/setup.py b/py/setup.py new file mode 100755 index 0000000000..27c2b6cca0 --- /dev/null +++ b/py/setup.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +# vim: set fileencoding=utf8 shiftwidth=4 tabstop=4 textwidth=80 foldmethod=marker : +# Copyright (c) 2010, Kou Man Tong. All rights reserved. +# For licensing, see LICENSE file included in the package. + +from distutils.core import setup + +setup(name = "vtdb", + packages=["vtdb", "net"], + platforms = "Any", + )