summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2011-01-31 01:40:02 +0100
committerJelmer Vernooij <jelmer@samba.org>2011-01-31 01:40:02 +0100
commitab6fbc8990023f1ea47abca0f6089c9cbe8c7b5a (patch)
tree244bcba59b8cec77d8eda98bc18ced4139856876
parenta1b95ca7eff55cf9720f9c1eac0c1a3e3d8fd334 (diff)
downloadpython-fastimport-ab6fbc8990023f1ea47abca0f6089c9cbe8c7b5a.tar.gz
release 0.9.0fastimport-0.9.0
-rw-r--r--AUTHORS3
-rw-r--r--fastimport/__init__.py19
-rwxr-xr-xsetup.py7
3 files changed, 27 insertions, 2 deletions
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'])