archivemail/setup.py

34 lines
1.1 KiB
Python
Raw Normal View History

#! /usr/bin/env python
2002-04-11 10:23:16 +00:00
import sys
def check_python_version():
"""Abort if we are running on python < v2.0"""
too_old_error = """This program requires python v2.0 or greater.
Your version of python is: %s""" % sys.version
try:
version = sys.version_info # we might not even have this function! :)
if (version[0] < 2):
print too_old_error
sys.exit(1)
except AttributeError:
print too_old_error
sys.exit(1)
# define & run this early - 'distutils.core' requires Python >= 2.0
check_python_version()
from distutils.core import setup
2002-04-11 10:23:16 +00:00
setup(name="archivemail",
2011-07-09 17:17:21 +00:00
version="0.9.0",
2002-04-11 10:47:42 +00:00
description="archive and compress old email",
license="GNU GPL",
url="http://archivemail.sourceforge.net/",
2002-04-11 10:23:16 +00:00
author="Paul Rodger",
author_email="paul@paulrodger.com",
maintainer="Nikolaus Schulz, Peter Poeml",
maintainer_email="nikosch@users.sourceforge.net, poeml@users.sourceforge.net",
scripts=["archivemail"],
data_files=[("share/man/man1", ["archivemail.1"])],
2002-04-11 10:23:16 +00:00
)