summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2013-01-24 21:30:40 +0100
committerMarkus Holtermann <info@markusholtermann.eu>2013-01-24 21:30:40 +0100
commit0cdc756ff3ef4c4f83739cb6db41b282a24fc152 (patch)
tree913da6f636c877810edcbc3d19aedca8d3b8be3c
parent92b1c0c45e496570a3ceaa57edddd4ba68c8425f (diff)
downloadbvg-grabber-0cdc756ff3ef4c4f83739cb6db41b282a24fc152.tar.gz
bvg-grabber-0cdc756ff3ef4c4f83739cb6db41b282a24fc152.tar.bz2
bvg-grabber-0cdc756ff3ef4c4f83739cb6db41b282a24fc152.zip
* We use beautifulsoup4 and python-dateutil
* Fix packaging error resulted by renaming the README file back to README.rst
-rw-r--r--requirements.txt3
-rwxr-xr-xsetup.py2
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
diff --git a/setup.py b/setup.py
index e523c92..ba44961 100755
--- a/setup.py
+++ b/setup.py
@@ -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(