#!/usr/bin/env python import os import sys from distutils.core import setup assert sys.hexversion >= 0x02020000, "Install Python 2.2 or greater" def get_version(): "Return the version number of cvs2svn." from cvs2svn_lib.version import VERSION return VERSION setup( # Metadata. name = "cvs2svn", version = get_version(), description = "CVS-to-Subversion repository converter", author = "The cvs2svn Team", author_email = "", url = "http://cvs2svn.tigris.org/", license = "Apache-style", # Data. packages = ["cvs2svn_lib", "cvs2svn_rcsparse"], scripts = ["cvs2svn"] )