| 1 |
#! /usr/bin/env python |
|---|
| 2 |
# (C) Copyright 2006 Nuxeo SAS <http://nuxeo.com> |
|---|
| 3 |
# Author: bdelbosc@nuxeo.com |
|---|
| 4 |
# |
|---|
| 5 |
# This program is free software; you can redistribute it and/or modify |
|---|
| 6 |
# it under the terms of the GNU General Public License as published by |
|---|
| 7 |
# the Free Software Foundation; either version 2 of the License, or |
|---|
| 8 |
# (at your option) any later version. |
|---|
| 9 |
# |
|---|
| 10 |
# This program is distributed in the hope that it will be useful, |
|---|
| 11 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 |
# GNU General Public License for more details. |
|---|
| 14 |
# |
|---|
| 15 |
# You should have received a copy of the GNU General Public License |
|---|
| 16 |
# along with this program; if not, write to the Free Software |
|---|
| 17 |
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|---|
| 18 |
# |
|---|
| 19 |
# |
|---|
| 20 |
"""Bundle Manager setup |
|---|
| 21 |
|
|---|
| 22 |
$Id$ |
|---|
| 23 |
""" |
|---|
| 24 |
from distutils.core import setup |
|---|
| 25 |
|
|---|
| 26 |
from bundleman.version import __version__ |
|---|
| 27 |
from tests.distutilstestcommand import TestCommand |
|---|
| 28 |
|
|---|
| 29 |
setup( |
|---|
| 30 |
name="bundleman", |
|---|
| 31 |
version=__version__, |
|---|
| 32 |
description="Manage svn bundle releasing.", |
|---|
| 33 |
long_description="""\ |
|---|
| 34 |
BundleMan try to manage releasing of application built on versioned products |
|---|
| 35 |
under subversion. |
|---|
| 36 |
|
|---|
| 37 |
An application is seen as a products suite defined using subversion |
|---|
| 38 |
svn:externals property. An application is a bundle of products. Products are |
|---|
| 39 |
versioned piece of software. |
|---|
| 40 |
|
|---|
| 41 |
Releasing an application is about taking care of tagging the source |
|---|
| 42 |
repository, managing version of each products, managing CHANGELOGs, creating |
|---|
| 43 |
a source package archive, giving ways to maitain a release without blocking |
|---|
| 44 |
the trunk development. |
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
Main features: |
|---|
| 48 |
|
|---|
| 49 |
* BundleMan is free software distributed under the GNU GPL. |
|---|
| 50 |
|
|---|
| 51 |
* It uses a recommended trunk/branches/tags repository layouts for |
|---|
| 52 |
products and bundles. |
|---|
| 53 |
|
|---|
| 54 |
* It uses standard versioning MAJOR.MINOR.BUGFIX-RELEASE for products. |
|---|
| 55 |
|
|---|
| 56 |
* Versioning of products is done automaticly by analysing a CHANGES file. |
|---|
| 57 |
|
|---|
| 58 |
* Enforce CHANGELOG quality by requiring a product CHANGES file. |
|---|
| 59 |
|
|---|
| 60 |
* It generates an application CHANGELOG. |
|---|
| 61 |
|
|---|
| 62 |
* There is no locking of the trunk or version's conflict when patching a |
|---|
| 63 |
released application. |
|---|
| 64 |
|
|---|
| 65 |
* Can manage public, private or remote products. |
|---|
| 66 |
|
|---|
| 67 |
* BundleMan is written in python and can be easily customized. |
|---|
| 68 |
|
|---|
| 69 |
""", |
|---|
| 70 |
author="Benoit Delbosc", |
|---|
| 71 |
author_email="bdelbosc@nuxeo.com", |
|---|
| 72 |
url="http://public.dev.nuxeo.com/~ben/bundleman/", |
|---|
| 73 |
download_url="http://public.dev.nuxeo.com/~ben/bundleman/bundleman-%s.tar.gz"%__version__, |
|---|
| 74 |
license='GPL', |
|---|
| 75 |
packages=['bundleman'], |
|---|
| 76 |
package_dir={'bundleman': 'bundleman'}, |
|---|
| 77 |
scripts=['scripts/bm-bundle', |
|---|
| 78 |
'scripts/bm-product', |
|---|
| 79 |
], |
|---|
| 80 |
keywords='packaging releasing bundle subversion versioning', |
|---|
| 81 |
classifiers=[ |
|---|
| 82 |
'Development Status :: 4 - Beta', |
|---|
| 83 |
'Environment :: Console', |
|---|
| 84 |
'Intended Audience :: Developers', |
|---|
| 85 |
'Intended Audience :: System Administrators', |
|---|
| 86 |
'Natural Language :: English', |
|---|
| 87 |
'License :: OSI Approved :: GNU General Public License (GPL)', |
|---|
| 88 |
'Operating System :: Unix', |
|---|
| 89 |
'Programming Language :: Python', |
|---|
| 90 |
'Topic :: System :: Software Distribution', |
|---|
| 91 |
'Topic :: Software Development :: Build Tools', |
|---|
| 92 |
'Topic :: Software Development :: Quality Assurance', |
|---|
| 93 |
'Topic :: Software Development :: Version Control', |
|---|
| 94 |
'Topic :: System :: Archiving :: Packaging', |
|---|
| 95 |
], |
|---|
| 96 |
cmdclass = { 'test': TestCommand,} |
|---|
| 97 |
) |
|---|