Merge lp:~andrea.corbellini/beeseek/node-setup.py into lp:beeseek

Proposed by Andrea Corbellini
Status: Merged
Merged at revision: 40
Proposed branch: lp:~andrea.corbellini/beeseek/node-setup.py
Merge into: lp:beeseek
Diff against target: 72 lines (+40/-3)
3 files modified
.bzrignore (+1/-0)
node/Makefile (+8/-3)
node/setup.py (+31/-0)
To merge this branch: bzr merge lp:~andrea.corbellini/beeseek/node-setup.py
Reviewer Review Type Date Requested Status
Andrea Colangelo Approve
Lorenzo Allegrucci Approve
Review via email: mp+29535@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Lorenzo Allegrucci (l-allegrucci) wrote :

ok for me

review: Approve
Revision history for this message
Andrea Colangelo (warp10) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file '.bzrignore'
--- .bzrignore 2010-07-08 07:22:54 +0000
+++ .bzrignore 2010-07-09 11:01:17 +0000
@@ -1,2 +1,3 @@
1node/beeseek/_version_info.py1node/beeseek/_version_info.py
2node/build/
2trackers/sniffer/beeseek-sniffer3trackers/sniffer/beeseek-sniffer
34
=== modified file 'node/Makefile'
--- node/Makefile 2010-07-08 07:15:39 +0000
+++ node/Makefile 2010-07-09 11:01:17 +0000
@@ -1,16 +1,21 @@
1# Copyright 2010 BeeSeek Developers. This software is licensed under the1# Copyright 2010 BeeSeek Developers. This software is licensed under the
2# GNU Affero General Public License version 3 (see the file LICENSE).2# GNU Affero General Public License version 3 (see the file LICENSE).
33
4build: version-info4build: beeseek/_version_info.py
5version-info: beeseek/_version_info.py5 python setup.py build
6
6beeseek/_version_info.py:7beeseek/_version_info.py:
7 bzr version-info --python > beeseek/_version_info.py8 bzr version-info --python > beeseek/_version_info.py
89
9check: build10install: build
11 python setup.py install
12
13check:
10 python ../tools/test-node.py14 python ../tools/test-node.py
1115
12full-check: check16full-check: check
13 python ../tools/test-node-windmill.py17 python ../tools/test-node-windmill.py
1418
15clean:19clean:
20 python setup.py clean
16 rm -f beeseek/_version_info.py21 rm -f beeseek/_version_info.py
1722
=== added file 'node/setup.py'
--- node/setup.py 1970-01-01 00:00:00 +0000
+++ node/setup.py 2010-07-09 11:01:17 +0000
@@ -0,0 +1,31 @@
1#!/usr/bin/python
2# Copyright 2010 BeeSeek Developers. This software is licensed under the
3# GNU Affero General Public License version 3 (see the file LICENSE).
4
5import os.path
6from distutils.core import setup
7from beeseek.version import program_version, format_version_full
8
9setup(
10 name='BeeSeek Node',
11 version=format_version_full(program_version),
12 author='BeeSeek Developers',
13 author_email='feedback@beeseek.org',
14 url='http://www.beeseek.org/',
15 description='Share data in the BeeSeek network',
16 long_description=
17 'The node is the component of BeeSeek that stores a piece of\n'
18 'database and shares it with other peers in the network.\n',
19 download_url='https://launchpad.net/beeseek/+download',
20 classifiers=[
21 'Development Status :: 1 - Planning',
22 'Environment :: Web Environment',
23 'Framework :: Django',
24 'Intended Audience :: End Users/Desktop',
25 'License :: OSI Approved :: GNU Affero General Public License v3',
26 'Operating System :: OS Independent',
27 'Topic :: Internet :: WWW/HTTP :: Indexing/Search'],
28 packages=[
29 path for path, _, files in os.walk('beeseek')
30 if '__init__.py' in files],
31 scripts=['beeseek-node'])

Subscribers

People subscribed via source and target branches