diff options
| author | blob8108 <blob8108@gmail.com> | 2014-12-18 18:23:38 +0000 |
|---|---|---|
| committer | blob8108 <blob8108@gmail.com> | 2014-12-18 18:24:02 +0000 |
| commit | 31666e21bc61ce6eb212c159780e02b10678ddc9 (patch) | |
| tree | 2ef3e8b1979954a4d765bbe1841db5f79c2ee1f9 | |
| parent | b3b2cc82a793ad7369c7b15a241b4ac87609ff52 (diff) | |
| download | blockext-31666e21bc61ce6eb212c159780e02b10678ddc9.tar.gz blockext-31666e21bc61ce6eb212c159780e02b10678ddc9.zip | |
Require future dependency
Fixes #28
| -rw-r--r-- | requirements.txt | 1 | ||||
| -rw-r--r-- | setup.py | 3 |
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 @@ -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", ], |
