[Pyple-commits] SF.net SVN: pyple: [20] src/setup.py
Status: Pre-Alpha
Brought to you by:
anseljh
From: <an...@us...> - 2007-03-16 17:05:53
|
Revision: 20 http://svn.sourceforge.net/pyple/?rev=20&view=rev Author: anseljh Date: 2007-03-16 10:05:51 -0700 (Fri, 16 Mar 2007) Log Message: ----------- switch to setuptools Modified Paths: -------------- src/setup.py Modified: src/setup.py =================================================================== --- src/setup.py 2007-03-16 16:56:25 UTC (rev 19) +++ src/setup.py 2007-03-16 17:05:51 UTC (rev 20) @@ -30,7 +30,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ -from distutils.core import setup +#from distutils.core import setup +from setuptools import setup, find_packages setup( name='pyple', @@ -43,4 +44,6 @@ license='BSD License', classifiers=['Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Software Development :: Libraries :: Python Modules'], py_modules=['pyple'], + package_data = {'':['*.*']}, + packages = find_packages(), ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |