Update setup and readme

pull/68/head
Konstantin Gründger 2017-06-04 11:53:21 +02:00
rodzic c61dc393fe
commit 7970a51d16
2 zmienionych plików z 12 dodań i 10 usunięć

Wyświetl plik

@ -95,14 +95,16 @@ available commands:
[db] [db]
drop Drop all tables. drop Drop all tables.
import_airports Import airports from a ".cup" file import_airports Import airports from a ".cup" file
import_csv_logfile Import csv logfile <arg: csv logfile>.
import_ddb Import registered devices from the DDB. import_ddb Import registered devices from the DDB.
import_file Import registered devices from a local file. import_file Import registered devices from a local file.
init Initialize the database. init Initialize the database.
update_relations Update AircraftBeacon and ReceiverBeacon relations
upgrade Upgrade database to the latest version. upgrade Upgrade database to the latest version.
[gateway] [gateway]
convert_logfile Convert ogn logfiles to csv logfiles (one for aircraft beacons and one for receiver beacons) <arg: path>. Logfile name: blablabla.txt_YYYY-MM-DD.
run Run the aprs client. run Run the aprs client.
import_logfiles Import OGN-data from ogn-log-files <arg: ogn-logfile>.
[logbook] [logbook]
compute_logbook Compute logbook. compute_logbook Compute logbook.

Wyświetl plik

@ -12,11 +12,11 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
setup( setup(
name='ogn-python', name='ogn-python',
version='0.3.0', version='0.4.0',
description='A database backend for the Open Glider Network', description='A database backend for the Open Glider Network',
long_description=long_description, long_description=long_description,
url='https://github.com/glidernet/ogn-python', url='https://github.com/glidernet/ogn-python',
author='Konstantin Gründger aka Meisterschueler, Fabian P. Schmidt aka kerel', author='Konstantin Gründger aka Meisterschueler, Fabian P. Schmidt aka kerel, Dominic Spreitz',
author_email='kerel-fs@gmx.de', author_email='kerel-fs@gmx.de',
license='AGPLv3', license='AGPLv3',
classifiers=[ classifiers=[
@ -32,22 +32,22 @@ setup(
keywords='gliding ogn', keywords='gliding ogn',
packages=find_packages(exclude=['tests', 'tests.*']), packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=[ install_requires=[
'SQLAlchemy==1.1.2', 'SQLAlchemy==1.1.10',
'geopy==1.11.0', 'geopy==1.11.0',
'manage.py==0.2.10', 'manage.py==0.2.10',
'celery[redis]>=3.1,<3.2', 'celery[redis]>=3.1,<3.2',
'alembic==0.8.8', 'alembic==0.9.2',
'aerofiles==0.3', 'aerofiles==0.3',
'geoalchemy2==0.3.0', 'geoalchemy2==0.4.0',
'shapely==1.5.15', 'shapely==1.5.17.post1',
'ogn-client==0.6.0', 'ogn-client==0.7.0',
'psycopg2==2.6.1' 'psycopg2==2.7.1'
], ],
extras_require={ extras_require={
'dev': [ 'dev': [
'nose==1.3.7', 'nose==1.3.7',
'coveralls==1.1', 'coveralls==1.1',
'flake8==3.0.4' 'flake8==3.3.0'
] ]
}, },
zip_safe=False zip_safe=False