[Compactpath-commit] SF.net SVN: compactpath: [7] trunk
Status: Beta
Brought to you by:
jurner
|
From: <ju...@us...> - 2008-06-18 07:04:51
|
Revision: 7
http://compactpath.svn.sourceforge.net/compactpath/?rev=7&view=rev
Author: jurner
Date: 2008-06-18 00:04:49 -0700 (Wed, 18 Jun 2008)
Log Message:
-----------
...
Removed Paths:
-------------
trunk/MANIFEST
trunk/setup.py
Deleted: trunk/MANIFEST
===================================================================
--- trunk/MANIFEST 2008-06-18 06:52:49 UTC (rev 6)
+++ trunk/MANIFEST 2008-06-18 07:04:49 UTC (rev 7)
@@ -1,12 +0,0 @@
-MANIFEST
-setup.py
-compactpath/LICENCE.MIT
-compactpath/README
-compactpath/__init__.py
-compactpath/compactpath.py
-compactpath/qt4/__init__.py
-compactpath/qt4/pathlabelwrap.py
-compactpath/qt4/qlabel.cpp
-compactpath/qt4/sample_gui.py
-compactpath/scripts/__init__.py
-compactpath/scripts/gen_docs.py
Deleted: trunk/setup.py
===================================================================
--- trunk/setup.py 2008-06-18 06:52:49 UTC (rev 6)
+++ trunk/setup.py 2008-06-18 07:04:49 UTC (rev 7)
@@ -1,55 +0,0 @@
-
-from distutils.core import setup
-
-AUTHOR = 'Juergen Urner'
-AUTHOR_EMAIL = 'jU...@ar...'
-CLASSIFIERS = [
- 'Development Status :: 3 - Alpha',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: MIT License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Topic :: System :: Filesystems',
- ]
-DESCRIPTION = 'a python package to compact filepaths to a desired length'
-DOWNLOAD=''
-LONG_DESCRIPTION = '''the package provides means to handle compacting of filepaths.
-this may be useful for gui programming for example where filepaths may be too long
-to fit into a certain widget and need to be compacted. compacting is done by inserting
-an ellipsis for unneeded parts, making shure the last component of a filepath remains
-visible to the user as long as possible.
-
-the package is designed so you can use it as from everywhere. no need to install it to
-site-packages, in case you want to include it in a project. it comes equipped with a
-wrapper for labels to handle filepaths of arbitrary length in qt4.
-
-to generate the documentation use epydoc
-'''
-NAME = 'compactpath'
-URL = 'https://sourceforge.net/projects/compactpath/'
-VERSION = '0.5.0'
-
-MODULES = ['compactpath', ]
-#PKG = {'': ''}
-DATA = {}
-
-if __name__ == '__main__':
- setup(
- author = AUTHOR,
- author_email = AUTHOR_EMAIL,
- classifiers=CLASSIFIERS,
- description=DESCRIPTION,
- download_url=DOWNLOAD,
- long_description=DESCRIPTION,
- name=NAME,
- url=URL,
- version=VERSION,
-
- license='MIT licence',
- platforms=['Many', ],
-
- #package_dir=PKG,
-
- py_modules=MODULES,
- package_data = DATA
- )
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|