#!/usr/bin/env python
# Copyright (c) 2007, Bruce Cropley
#
# This Python module and associated files are released under the FreeBSD
# license. Essentially, you can do what you like with it except pretend you wrote
# it yourself. For the full license information, see the README.txt file that
# was distributed with the deployable package.
# For more information see http://sourceforge.net/projects/deployable/
import sys
from distutils.core import setup
# check version
if sys.version_info[0] < 2 or sys.version_info[0] == 2 and sys.version_info[1] < 4:
print "Python versions below 2.4 not supported"
sys.exit(0)
setup(
name="dvs",
version="0.1",
description="Deployable Version System",
author="Bruce Cropley",
author_email="brucedecoy-post_at_removethis_yahoo_com_au",
platforms=["Solaris", "Mac OS X"],
license="BSD",
url="http://dvs.sourceforge.net",
scripts=["dvs/dvs"], # dvs is the main entry point
packages=["", "dvs"],
long_description="""DVS is designed to automate and track the development, testing and installation workflow of a set of deployables.""",
)