Skip to content

Commit

Permalink
fix test error and improve setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
willemarcel committed Jun 5, 2015
1 parent 6e2fd0e commit dda8fe3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,16 @@


setup(name='sentinelsat',
version='0.0.1',
version='0.1',
description="Utility to search and download Sentinel-1 Imagery",
long_description=long_description,
classifiers=[],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities',
],
keywords='',
author="Wille Marcel",
author_email='wille@wille.blog.br',
Expand Down
7 changes: 3 additions & 4 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@

def test_cli():
runner = CliRunner()
result = runner.invoke(
cli,
'search',
[environ.get('SENTINEL_USER'),
result = runner.invoke(cli,
['search',
environ.get('SENTINEL_USER'),
environ.get('SENTINEL_PASSWORD'),
'tests/map.geojson'
])
Expand Down

0 comments on commit dda8fe3

Please sign in to comment.