diff options
-rw-r--r-- | requirements.txt | 3 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/requirements.txt b/requirements.txt index 8207e60..7ef2347 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ requests==1.1.0 -beautifulsoup4==4.1.3
\ No newline at end of file +beautifulsoup4==4.1.3 +python-dateutil==2.1
\ No newline at end of file @@ -7,7 +7,7 @@ BASEDIR = path.dirname(__file__) open = lambda filepath: codecs.open(filepath, 'r', 'utf-8') -description = open(path.join(BASEDIR, 'README')).read() +description = open(path.join(BASEDIR, 'README.rst')).read() requirements = [line for line in open(path.join(BASEDIR, 'requirements.txt'))] setup( |