[Pkg-bazaar-commits] ./bzr/unstable r45: - add setup.py and install instructions
Martin Pool
mbp at sourcefrog.net
Fri Apr 10 07:26:23 UTC 2009
------------------------------------------------------------
revno: 45
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Mon 2005-03-14 18:07:24 +1100
message:
- add setup.py and install instructions
- rename main script to just bzr
added:
setup.py
renamed:
bzr.py => bzr
modified:
README
-------------- next part --------------
=== modified file 'README'
--- a/README 2005-03-14 03:01:04 +0000
+++ b/README 2005-03-14 07:07:24 +0000
@@ -31,3 +31,16 @@
.. _cElementTree: http://effbot.org/zone/celementtree.htm
.. _ElementTree: http://effbot.org/zone/element-index.htm
+
+
+Installation
+------------
+
+bzr has a standard python ``setup.py`` script.
+
+To install it system-wide::
+
+ # python ./setup.py install
+
+Alternatively you can simply put the source directory on $PYTHONPATH
+and $PATH.
=== renamed file 'bzr.py' => 'bzr'
=== added file 'setup.py'
--- a/setup.py 1970-01-01 00:00:00 +0000
+++ b/setup.py 2005-03-14 07:07:24 +0000
@@ -0,0 +1,17 @@
+#! /usr/bin/env python
+
+# This is an installation script for bzr. Run it with
+# './setup.py install', or
+# './setup.py --help' for more options
+
+from distutils.core import setup
+
+setup(name='bzr',
+ version='0.0.0',
+ author='Martin Pool',
+ author_email='mbp at sourcefrog.net',
+ url='http://www.bazaar-ng.org/',
+ description='Friendly distributed version control system',
+ license='GNU GPL v2',
+ packages=['bzrlib'],
+ scripts=['bzr'])
More information about the Pkg-bazaar-commits
mailing list