From: parente Date: Fri, 4 May 2007 12:50:28 +0000 (+0000) Subject: * setup.py: X-Git-Tag: AT_SPI2_ATK_2_12_0~834 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a2d88bd43ee63330acb190cc338f6b5fbfc8b9fd;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git * setup.py: * Makefile.am: Fixed bug #435809, Add setup.py and Makefile.am git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@915 e2bd861d-eb25-0410-b326-f6ed22b6b98c --- diff --git a/pyatspi/ChangeLog b/pyatspi/ChangeLog index 4158004..8f63083 100644 --- a/pyatspi/ChangeLog +++ b/pyatspi/ChangeLog @@ -1,3 +1,9 @@ +2007-05-04 Peter Parente + + * setup.py: + * Makefile.am: + Fixed bug #435809, Add setup.py and Makefile.am + 2007-05-03 Peter Parente * accessible.py: diff --git a/pyatspi/Makefile.am b/pyatspi/Makefile.am new file mode 100644 index 0000000..8c6fb7a --- /dev/null +++ b/pyatspi/Makefile.am @@ -0,0 +1,8 @@ +lsr_PYTHON = \ + __init__.py \ + accessible.py \ + constants.py \ + event.py \ + registry.py \ + utils.py +lsrdir = $(pkgpythondir)/ diff --git a/pyatspi/setup.py b/pyatspi/setup.py new file mode 100644 index 0000000..e728ac9 --- /dev/null +++ b/pyatspi/setup.py @@ -0,0 +1,40 @@ +''' +pyatspi: Python wrapper for AT-SPI + +@author: Peter Parente +@organization: IBM Corporation +@copyright: Copyright (c) 2005, 2007 IBM Corporation +@license: LGPL + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this library; if not, write to the +Free Software Foundation, Inc., 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. + +Portions of this code originally licensed and copyright (c) 2005, 2007 +IBM Corporation under the BSD license, available at +U{http://www.opensource.org/licenses/bsd-license.php} +''' +from distutils.core import setup + +doclines = __doc__.split('\n') +setup(name='pyatspi', + version='0.1.0', + author='Peter Parente', + author_email='parente@cs.unc.edu', + url='http://live.gnome.org/GAP/PythonATSPI', + license='http://www.opensource.org/licenses/lgpl-license.php', + description = doclines[1], + package_dir = {"pyatspi" : ""}, + packages = ['pyatspi'], + )