setup.py
changeset 4 f3c30b7421b9
parent 2 9b39f828aa8a
child 24 48ea255e8a85
equal deleted inserted replaced
3:a9b44e04bf01 4:f3c30b7421b9
     5 # $Id$
     5 # $Id$
     6 
     6 
     7 import os
     7 import os
     8 from distutils.core import setup
     8 from distutils.core import setup
     9 
     9 
    10 VERSION = '0.3.1'
    10 from VirtualMailManager.constants.VERSION import VERSION
    11 
    11 
    12 long_description = """
    12 long_description = """
    13 Virtual Mail Manager is a command line tool for administrators/postmasters to
    13 Virtual Mail Manager is a command line tool for administrators/postmasters to
    14 manage domains, accounts and aliases. It's designed for Dovecot and Postfix
    14 manage domains, accounts and aliases. It's designed for Dovecot and Postfix
    15 with a PostgreSQL backend.
    15 with a PostgreSQL backend.
    16 """
    16 """
    17 
       
    18 libdir = '/usr/local/lib'
       
    19 
    17 
    20 # remove existing MANIFEST
    18 # remove existing MANIFEST
    21 if os.path.exists('MANIFEST'):
    19 if os.path.exists('MANIFEST'):
    22     os.remove('MANIFEST')
    20     os.remove('MANIFEST')
    23 
    21