bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
|
0.64.90
by Ian Clatworthy
setup.py no longer requires python2.4 |
1 |
#!/usr/bin/env python
|
|
0.64.80
by Ian Clatworthy
added NEWS and setup.py |
2 |
from distutils.core import setup |
|
0.64.306
by Jelmer Vernooij
Add info file with single version tuple. |
3 |
from info import * |
|
0.64.304
by Jelmer Vernooij
Add download_url in setup.py for use on pypi. |
4 |
|
|
0.72.1
by Jelmer Vernooij
Fix setup.py |
5 |
if __name__ == '__main__': |
|
0.64.316
by Jelmer Vernooij
Don't rely on bzrlib in setup.py. |
6 |
version = ".".join([str(x) for x in bzr_plugin_version]) |
|
0.123.2
by Jelmer Vernooij
Split out fastimport, import it from the system. |
7 |
setup(name="bzr-fastimport", |
|
0.64.304
by Jelmer Vernooij
Add download_url in setup.py for use on pypi. |
8 |
version=version, |
|
0.64.84
by Ian Clatworthy
release 0.6 |
9 |
description="stream-based import into and export from Bazaar.", |
|
0.64.80
by Ian Clatworthy
added NEWS and setup.py |
10 |
author="Canonical Ltd", |
11 |
author_email="bazaar@lists.canonical.com", |
|
12 |
license = "GNU GPL v2", |
|
|
0.64.304
by Jelmer Vernooij
Add download_url in setup.py for use on pypi. |
13 |
download_url="http://launchpad.net/bzr-fastimport/trunk/%s/+download/bzr-fastimport-%s.tar.gz" % (version, version), |
|
0.64.80
by Ian Clatworthy
added NEWS and setup.py |
14 |
url="https://launchpad.net/bzr-fastimport", |
|
0.79.1
by Ian Clatworthy
turn bzr-fast-export into a fast-export command |
15 |
scripts=[], |
|
0.64.80
by Ian Clatworthy
added NEWS and setup.py |
16 |
packages=['bzrlib.plugins.fastimport', |
|
0.113.1
by Jelmer Vernooij
Fix installation of the exporters module. |
17 |
'bzrlib.plugins.fastimport.exporters', |
|
0.64.80
by Ian Clatworthy
added NEWS and setup.py |
18 |
'bzrlib.plugins.fastimport.processors', |
19 |
'bzrlib.plugins.fastimport.tests', |
|
20 |
],
|
|
21 |
package_dir={'bzrlib.plugins.fastimport': '.'}) |