|
Revision 1288, 1.9 kB
(checked in by eriol, 1 year ago)
|
Fixed typo and added all packages
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
import sys |
|---|
| 25 |
if sys.version_info < (2,5): |
|---|
| 26 |
print 'You must use at least Python 2.5 for Netsukuku' |
|---|
| 27 |
sys.exit(3) |
|---|
| 28 |
|
|---|
| 29 |
from distutils.core import setup |
|---|
| 30 |
from config import VERSION |
|---|
| 31 |
|
|---|
| 32 |
setup( |
|---|
| 33 |
name='pyntk', |
|---|
| 34 |
description='Mesh network that generates and sustains itself autonomously.', |
|---|
| 35 |
long_description=\ |
|---|
| 36 |
''' |
|---|
| 37 |
Netsukuku is a mesh network or a p2p net system that generates and sustains |
|---|
| 38 |
itself autonomously. It is designed to handle an unlimited number of nodes |
|---|
| 39 |
with minimal CPU and memory resources. Thanks to this feature it can be |
|---|
| 40 |
easily used to build a worldwide distributed, anonymous and anarchical |
|---|
| 41 |
network, separated from the Internet, without the support of any servers, |
|---|
| 42 |
ISPs or control authorities. |
|---|
| 43 |
''', |
|---|
| 44 |
author='The Netsukuku Team', |
|---|
| 45 |
author_email='http://netsukuku.freaknet.org/?pag=contacts', |
|---|
| 46 |
url='http://www.netsukuku.org', |
|---|
| 47 |
version=VERSION, |
|---|
| 48 |
license='General Public License', |
|---|
| 49 |
packages=['ntk', 'ntk.core', 'ntk.lib', |
|---|
| 50 |
'ntk.network', 'ntk.sim', 'ntk.wrap'], |
|---|
| 51 |
scripts=['ntkd']) |
|---|