Package pydrizzle :: Package traits102 :: Module setup
[hide private]
[frames] | no frames]

Source Code for Module pydrizzle.traits102.setup

 1  #!/usr/bin/env python 
 2   
 3  #-------------------------------------------------------------------------------- 
 4  # 
 5  #  Python setup for the 'traits' package 
 6  # 
 7  #  Written by: David C. Morrill 
 8  # 
 9  #  Date: 2/03/2003 
10  # 
11  #  (c) Copyright 2002 by Enthought, Inc. 
12  # 
13  #-------------------------------------------------------------------------------- 
14  from __future__ import division # confidence high 
15   
16  from distutils.core import setup 
17   
18  setup( name         = 'traits', 
19         version      = '1.0.2', 
20         description  = 'Strongly typed Python attributes package', 
21         author       = 'David C. Morrill', 
22         author_email = 'dmorrill@enthought.com', 
23         url          = 'http://www.scipy.org/site_content/traits', 
24         license      = 'BSD', 
25         packages     = [ 'traits' ], 
26         package_dir  = { 'traits': '.' } 
27  ) 
28