Author: ArcRiley Date: 2009-01-01 12:50:48 -0500 (Thu, 01 Jan 2009) New Revision: 1403
Added: trunk/concordance/docs/ trunk/concordance/scripts/ trunk/concordance/setup.py trunk/concordance/src/ Log: Basic setup script and directory structure Added: trunk/concordance/setup.py =================================================================== --- trunk/concordance/setup.py (rev 0) +++ trunk/concordance/setup.py 2009-01-01 17:50:48 UTC (rev 1403) @@ -0,0 +1,60 @@ +#!/usr/bin/env python3.0 + +''' Concordance XMPP/Jingle Server Framework; setup script ''' + +__credits__ = '''Copyright (C) 2009 Copyleft Games Group + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program; if not, see http://www.gnu.org/licenses +''' +__author__ = 'Copyleft Games Group' +__date__ = 'Last change on '+ \ + '$Date$'[7:-20]+ \ + 'by '+'$Author$'[9:-2] +__version__ = 'Trunk (r'+'$Rev$'[6:-2]+')' + +import sys +from distutils.core import setup +from distutils.extension import Extension + +if sys.version_info[0] != 3 : + raise RuntimeError('Python 3.0 is required for this package.') + +setup( + name = 'Concordance', + version = __version__.split()[0], + description = 'XMPP/Jingle Server Framework', + long_description = ''' ''', + author = 'PySoy Group', + author_email = 'pysoy-...@pysoy.org', + maintainer = 'Arc Riley', + maintainer_email = 'arcri...@gmail.org', + url = 'http://pysoy.org/', + download_url = 'http://svn.pysoy.org/trunk/concordance', + license = 'GNU Affero General Public License version 3 (AGPLv3)', + packages = ['concordance'], + package_dir = {'concordance' : 'scripts'}, + ext_package = 'concordance', + ext_modules = extensions, + classifiers = [ + 'Development Status :: 1 - Planning', + 'Environment :: No Input/Output (Daemon)', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU Affero General Public License v3', + 'Natural Language :: English', + 'Operating System :: OS Independent', + 'Programming Language :: C', + 'Programming Language :: Python :: 3', + 'Topic :: Internet' + ], +) Property changes on: trunk/concordance/setup.py ___________________________________________________________________ Added: svn:executable + * Added: svn:keywords + Author Date Rev _______________________________________________ PySoy-SVN mailing list PySoy-SVN@pysoy.org http://www.pysoy.org/mailman/listinfo/pysoy-svn