2008-05-28 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / pyatspi / setup.py
1 '''
2 pyatspi: Python wrapper for AT-SPI
3
4 @author: Peter Parente
5 @organization: IBM Corporation
6 @copyright: Copyright (c) 2005, 2007 IBM Corporation
7 @license: LGPL
8
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public
11 License as published by the Free Software Foundation; either
12 version 2 of the License, or (at your option) any later version.
13
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 Library General Public License for more details.
18
19 You should have received a copy of the GNU Library General Public
20 License along with this library; if not, write to the
21 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA.
23
24 Portions of this code originally licensed and copyright (c) 2005, 2007
25 IBM Corporation under the BSD license, available at
26 U{http://www.opensource.org/licenses/bsd-license.php}
27 '''
28 from distutils.core import setup
29
30 doclines = __doc__.split('\n')
31 setup(name='pyatspi',
32       version='0.1.0',
33       author='Peter Parente',
34       author_email='parente@cs.unc.edu',
35       url='http://live.gnome.org/GAP/PythonATSPI',
36       license='http://www.opensource.org/licenses/lgpl-license.php',
37       description = doclines[1],     
38       package_dir = {"pyatspi" : ""},
39       packages = ['pyatspi'],
40       )