Newer
Older
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
# pydtn
pydtn is a python module for simulating delay tolerant networks.
Table of Contents:
* [Installation](#installation)
* [Development](#development)
## Installation
pydtn has been run with Python 3.4 and 3.6.
To install pydtn, simply:
```
$ pip install git+https://git.cs.usask.ca/discus/pydtn.git
```
## Usage
There are examples in the `examples/` directory.
## Development
Clone the repository via ssh:
```
$ git clone git@git.cs.usask.ca:discus/pydtn.git
```
or via https:
```
$ git clone https://git.cs.usask.ca/discus/pydtn.git
```
Then install the package and it's dependencies:
```
$ cd pydtn
$ pip install --editable .
```