Skip to content

Commit ffb9b22

Browse files
author
Dane Springmeyer
committed
simplify readme + add travis
1 parent 60fbfdb commit ffb9b22

2 files changed

Lines changed: 33 additions & 21 deletions

File tree

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
language: cpp
2+
3+
sudo: false
4+
5+
addons:
6+
apt:
7+
sources:
8+
- ubuntu-toolchain-r-test
9+
- llvm-toolchain-precise-3.5
10+
packages:
11+
- clang-3.5
12+
13+
env:
14+
global:
15+
- MAPNIK_GIT: v3.0.0-rc1-693-g01a9b4c
16+
17+
before_install:
18+
- export CXX="clang++-3.5"
19+
- export CC="clang-3.5"
20+
- python --version
21+
22+
install:
23+
- time python setup.py build
24+
25+
before_script:
26+
- true
27+
28+
script:
29+
- true

README.md

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,8 @@
1-
```
2-
_/ _/ _/ _/
3-
_/_/ _/_/ _/_/_/ _/_/_/ _/_/_/ _/ _/
4-
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/_/
5-
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/
6-
_/ _/ _/_/_/ _/_/_/ _/ _/ _/ _/ _/
7-
_/
8-
_/
9-
```
101

11-
[![Build Status](https://secure.travis-ci.org/mapnik/mapnik.png)](http://travis-ci.org/mapnik/mapnik)
2+
[![Build Status](https://travis-ci.org/mapnik/python-mapnik.svg)](https://travis-ci.org/mapnik/python-mapnik)
123

13-
Mapnik is an open source toolkit for developing mapping applications. At the core is a C++ shared library providing algorithms and patterns for spatial data access and visualization.
4+
Python bindings for Mapnik.
145

15-
Mapnik is basically a collection of geographic objects like maps, layers, datasources, features, and geometries. The library doesn't rely on any OS specific "windowing systems" and it can be deployed to any server environment. It is intended to play fair in a multi-threaded environment and is aimed primarily, but not exclusively, at web-based development.
6+
## Installation
167

17-
For further information see [http://mapnik.org](http://mapnik.org) and also our [wiki documentation](https://github.com/mapnik/mapnik/wiki).
18-
19-
# Installation
20-
21-
See [INSTALL.md](https://github.com/mapnik/mapnik/blob/master/INSTALL.md) for installation instructions and the [Install](https://github.com/mapnik/mapnik/wiki/Mapnik-Installation) page on the wiki for guides.
22-
23-
# License
24-
25-
Mapnik software is free and is released under the LGPL ([GNU Lesser General Public License](http://www.gnu.org/licenses/lgpl.html_)). Please see [COPYING](https://github.com/mapnik/mapnik/blob/master/COPYING) for more information.
8+
TODO

0 commit comments

Comments
 (0)