commit 073e0c3b94f2b11c52cb749730131db25cc2b445
parent c6521215e5513abf97bed7804368f096fe079c11
Author: Samuel Walladge <samuel@swalladge.id.au>
Date: Fri, 8 Jul 2016 23:20:28 +0930
use setuptools instead of distutils, make sure pip is listed as dependency
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -19,6 +19,7 @@ Check your OS distribution for installation packages.
### Requirements
* [Python 3](http://python.org)
+* [pip](https://pip.pypa.io/en/stable/)
* [Urwid](http://urwid.org) Python 3 module
* [Requests](https://requests.readthedocs.org/en/master/) Python 3 module
* A love for the command line!
diff --git a/setup.py b/setup.py
@@ -3,7 +3,7 @@
# Copyright (c) 2014 Eric Davis
# Licensed under the MIT License
-from distutils.core import setup
+from setuptools import setup
import simplenote_cli
deps = ['urwid', 'requests']