[Assorted-commits] SF.net SVN: assorted:[1144] music-labeler/trunk
Brought to you by:
yangzhang
From: <yan...@us...> - 2009-01-25 09:30:21
|
Revision: 1144 http://assorted.svn.sourceforge.net/assorted/?rev=1144&view=rev Author: yangzhang Date: 2009-01-25 09:30:18 +0000 (Sun, 25 Jan 2009) Log Message: ----------- added some meta files for the project Added Paths: ----------- music-labeler/trunk/publish.bash music-labeler/trunk/setup.bash music-labeler/trunk/setup.py Copied: music-labeler/trunk/publish.bash (from rev 1123, python-commons/trunk/publish.bash) =================================================================== --- music-labeler/trunk/publish.bash (rev 0) +++ music-labeler/trunk/publish.bash 2009-01-25 09:30:18 UTC (rev 1144) @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +echo 'Remember to keep versions in sync in all three locations:' +echo '__init__.py, README (Changes), setup.bash, and setup.py' + +fullname='Music Labeler' +version=0.1 +license=gpl3 +websrcs=( README ) +rels=( pypi: ) +. assorted.bash "$@" Property changes on: music-labeler/trunk/publish.bash ___________________________________________________________________ Added: svn:executable + * Added: svn:mergeinfo + Copied: music-labeler/trunk/setup.bash (from rev 1123, python-commons/trunk/setup.bash) =================================================================== --- music-labeler/trunk/setup.bash (rev 0) +++ music-labeler/trunk/setup.bash 2009-01-25 09:30:18 UTC (rev 1144) @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +pkg=music-labeler +. simple-setup.bash + +install_strip bin/ src/ml.py Property changes on: music-labeler/trunk/setup.bash ___________________________________________________________________ Added: svn:executable + * Added: svn:mergeinfo + Copied: music-labeler/trunk/setup.py (from rev 1123, python-commons/trunk/setup.py) =================================================================== --- music-labeler/trunk/setup.py (rev 0) +++ music-labeler/trunk/setup.py 2009-01-25 09:30:18 UTC (rev 1144) @@ -0,0 +1,42 @@ +#!/usr/bin/env python +# -*- mode: python; tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4; -*- +# vim:ft=python:et:sw=4:ts=4 + +from commons import setup + +# XXX: adjust the details here! + +pkg_info_text = """ +Metadata-Version: 1.1 +Name: music-labeler +Version: 0.1 +Author: Yang Zhang +Author-email: yaaang NOSPAM at REMOVECAPS gmail +Home-page: http://assorted.sourceforge.net/python-commons +Summary: Python Commons +License: Python Software Foundation License +Description: Music labeling (categorization) tool. +Keywords: Python,common,commons,utility,utilities,library,libraries +Platform: any +Provides: commons +Classifier: Development Status :: 4 - Beta +Classifier: Environment :: No Input/Output (Daemon) +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: Python Software Foundation License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Topic :: Communications +Classifier: Topic :: Database +Classifier: Topic :: Internet +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Classifier: Topic :: System +Classifier: Topic :: System :: Filesystems +Classifier: Topic :: System :: Logging +Classifier: Topic :: System :: Networking +Classifier: Topic :: Text Processing +Classifier: Topic :: Utilities +""" + +setup.run_setup( pkg_info_text, + #scripts = ['frontend/py_hotshot.py'], + ) Property changes on: music-labeler/trunk/setup.py ___________________________________________________________________ Added: svn:executable + * Added: svn:mergeinfo + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |