Menu

[b9b7ac]: / setup.py  Maximize  Restore  History

Download this file

34 lines (27 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/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.""",
)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.