From ab6fbc8990023f1ea47abca0f6089c9cbe8c7b5a Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 31 Jan 2011 01:40:02 +0100 Subject: release 0.9.0 --- AUTHORS | 3 +++ fastimport/__init__.py | 19 +++++++++++++++++++ setup.py | 7 +++++-- 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..be33957 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,3 @@ +Ian Clatworthy wrote bzr-fastimport, which included a lot of generic code for +parsing and generating fastimport streams. This code has since been split out +into its own separate package (python-fastimport) so it can be used by other projects. diff --git a/fastimport/__init__.py b/fastimport/__init__.py index e69de29..ea05370 100644 --- a/fastimport/__init__.py +++ b/fastimport/__init__.py @@ -0,0 +1,19 @@ +# Copyright (C) 2008-2011 Canonical Ltd +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +"""Fastimport streams.""" + +__version__ = (0, 9, 0) diff --git a/setup.py b/setup.py index bc9665a..9d4c808 100755 --- a/setup.py +++ b/setup.py @@ -1,11 +1,14 @@ #!/usr/bin/env python from distutils.core import setup +version = "0.9.0" + setup(name="fastimport", - version="0.9.0dev0", description="VCS fastimport/fastexport parser", + version=version, author="Canonical Ltd", author_email="bazaar@lists.canonical.com", - license = "GNU GPL v2", + license="GNU GPL v2 or later", url="https://launchpad.net/python-fastimport", + download_url='http://launchpad.net/python-fastimport/trunk/%s/+download/python-fastimport-%s.tar.gz' % (version, version), packages=['fastimport', 'fastimport.tests', 'fastimport.processors']) -- cgit v1.2.1