Added flower to setup and updated readme

pull/78/head
Konstantin Gründger 2019-11-24 15:45:04 +01:00
rodzic d2dee96d90
commit 023ae26397
2 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -6,8 +6,7 @@
A database backend for the [Open Glider Network](http://wiki.glidernet.org/). A database backend for the [Open Glider Network](http://wiki.glidernet.org/).
The ogn-python module saves all received beacons into a database with [SQLAlchemy](http://www.sqlalchemy.org/). The ogn-python module saves all received beacons into a database with [SQLAlchemy](http://www.sqlalchemy.org/).
It connects to the OGN aprs servers with [python-ogn-client](https://github.com/glidernet/python-ogn-client). It connects to the OGN aprs servers with [python-ogn-client](https://github.com/glidernet/python-ogn-client).
It requires [PostgreSQL](http://www.postgresql.org/) and [PostGIS](http://www.postgis.net/). It requires [PostgreSQL](http://www.postgresql.org/), [PostGIS](http://www.postgis.net/) and [TimescaleDB](https://www.timescale.com).
For best performance you should use [TimescaleDB](https://www.timescale.com), which is based on PostgreSQL.
[Examples](https://github.com/glidernet/ogn-python/wiki/Examples) [Examples](https://github.com/glidernet/ogn-python/wiki/Examples)
@ -25,7 +24,7 @@ For best performance you should use [TimescaleDB](https://www.timescale.com), wh
pip install -r requirements.txt pip install -r requirements.txt
``` ```
3. Install [PostgreSQL](http://www.postgresql.org/) with [PostGIS](http://www.postgis.net/) Extension. 3. Install [PostgreSQL](http://www.postgresql.org/) with [PostGIS](http://www.postgis.net/) and [TimescaleDB](https://www.timescale.com) Extension.
Create a database (use "ogn" as default, otherwise you have to modify the configuration, see below) Create a database (use "ogn" as default, otherwise you have to modify the configuration, see below)
4. Optional: Install redis for asynchronous tasks (like takeoff/landing-detection) 4. Optional: Install redis for asynchronous tasks (like takeoff/landing-detection)

Wyświetl plik

@ -40,7 +40,7 @@ setup(
'Flask-Caching==1.7.2', 'Flask-Caching==1.7.2',
'geopy==1.20.0', 'geopy==1.20.0',
'celery==4.3.0', 'celery==4.3.0',
'redis==3.3.11', 'redis==3.3.11',
'aerofiles==1.0.0', 'aerofiles==1.0.0',
'geoalchemy2==0.6.3', 'geoalchemy2==0.6.3',
'shapely==1.6.4.post2', 'shapely==1.6.4.post2',
@ -49,7 +49,8 @@ setup(
'mgrs==1.3.5', 'mgrs==1.3.5',
'xmlunittest==0.5.0', 'xmlunittest==0.5.0',
'tqdm==4.38.0', 'tqdm==4.38.0',
'requests==2.22.0', 'requests==2.22.0',
'flower==0.9.3'
], ],
test_require=[ test_require=[
'pytest==5.0.1', 'pytest==5.0.1',