Skip to content

Commit

Permalink
Add 'six' as a requirement.
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Raspaud <martin.raspaud@smhi.se>
  • Loading branch information
mraspaud committed Nov 18, 2015
1 parent 5ad5783 commit 0eec9cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Copyright (c) 2014
# Copyright (c) 2014, 2015

# Author(s):

Expand Down Expand Up @@ -41,10 +41,10 @@
"Programming Language :: Python",
"Topic :: Scientific/Engineering"],
url="https://github.com/pnuu/trollsift",
download_url="https://github.com/pnuu/trollsift/tarball/"+version.__version__,
download_url="https://github.com/pnuu/trollsift/tarball/" + version.__version__,
packages=['trollsift'],
keywords=["string parsing", "string formatting", "pytroll"],
zip_safe=False,
install_requires=[],
test_suite = 'nose.collector',
install_requires=['six'],
test_suite='nose.collector',
)

0 comments on commit 0eec9cc

Please sign in to comment.