summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--requirements.txt1
-rw-r--r--setup.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..89ce892
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+future >= 0.12
diff --git a/setup.py b/setup.py
index f6d4a7f..85fd05c 100644
--- a/setup.py
+++ b/setup.py
@@ -14,6 +14,9 @@ setup(name = 'blockext',
description = 'Module for writing Scratch 2.0 and Snap! extensions',
license = 'MIT',
packages = ['blockext'],
+ install_requires = [
+ 'future >= 0.12',
+ ],
classifiers = [
"Programming Language :: Python",
],