diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-03-11 19:43:32 +0100 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2017-03-12 13:29:10 +0100 |
commit | d2c12c89e6f759cd3f98c53220c48a7eddfcf774 (patch) | |
tree | dadb5a09db85b5247cdf971c35a4f2b1a2945b3c /setup.py | |
parent | Updated README + version bump (diff) | |
download | kcc-d2c12c89e6f759cd3f98c53220c48a7eddfcf774.tar.gz kcc-d2c12c89e6f759cd3f98c53220c48a7eddfcf774.tar.bz2 kcc-d2c12c89e6f759cd3f98c53220c48a7eddfcf774.zip |
Updated dependencies
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/setup.py b/setup.py index d355265..d1d4808 100755 --- a/setup.py +++ b/setup.py @@ -106,7 +106,7 @@ class BuildCommand(build): shutil.copyfile('kcc.py', 'build/_scripts/kcc') shutil.copyfile('kcc-c2e.py', 'build/_scripts/kcc-c2e') shutil.copyfile('kcc-c2p.py', 'build/_scripts/kcc-c2p') - # noinspection PyShadowingNames + # noinspection PyUnusedLocal,PyShadowingNames OPTIONS = dict( scripts=['build/_scripts/kcc', 'build/_scripts/kcc-c2e', @@ -114,15 +114,13 @@ class BuildCommand(build): packages=['kcc'], install_requires=[ 'PyQt5>=5.6.0' - 'Pillow>=3.2.0', - 'psutil>=4.1.0', - 'python-slugify>=1.2.0', - 'raven>=5.13.0', + 'Pillow>=4.0.0', + 'psutil>=5.0.0', + 'python-slugify>=1.2.1', + 'raven>=6.0.0', ], zip_safe=False, ) - if sys.version_info[1] < 5: - OPTIONS['install_requires'].append('scandir>=1.2.0') build.run(self) |