1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
..
This file is part of lazr.launchpadlib.
lazr.launchpadlib is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, version 3 of the License.
lazr.launchpadlib 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 Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with lazr.launchpadlib. If not, see <http://www.gnu.org/licenses/>.
This project uses zc.buildout for development.
============
Introduction
============
These are guidelines for hacking on the lazr.launchpadlib project. But first,
please see the common hacking guidelines at:
https://dev.launchpad.net/HackingLazrLibraries
These guidelines will tell you how to run the tests, use in-development
versions of libraries, land your branches and get them released.
Getting help
------------
If you find bugs in this package, you can report them here:
https://launchpad.net/launchpadlib
If you want to discuss this package, join the team and mailing list here:
https://launchpad.net/~lazr-developers
or send a message to:
lazr-developers@lists.launchpad.net
========
Building
========
As mentioned above, this project uses zc.buildout, which requires a
few steps to build some necessary files.
The following two steps will create some necessary files, including a
bin directory.
% python bootstrap.py
% bin/buildout
Once built you can run all of the tests with:
% bin/test
|