| Home | Trees | Indices | Help |
|
|---|
|
|
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
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Mon Aug 22 14:36:08 2011 | http://epydoc.sourceforge.net |