diff options
author | Paweł Jastrzębski <pawelj@iosphe.re> | 2016-04-25 18:40:51 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@iosphe.re> | 2016-04-25 18:40:51 +0200 |
commit | e4dccfe60339d1717af73f42d304da0a7410851d (patch) | |
tree | 329256a2b4acc577e01dd75e234291bdddeb79f8 /setup.py | |
parent | Save GUI size (diff) | |
download | kcc-e4dccfe60339d1717af73f42d304da0a7410851d.tar.gz kcc-e4dccfe60339d1717af73f42d304da0a7410851d.tar.bz2 kcc-e4dccfe60339d1717af73f42d304da0a7410851d.zip |
Updated README + version bump
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/setup.py b/setup.py index e6d68c8..accb440 100755 --- a/setup.py +++ b/setup.py @@ -107,14 +107,16 @@ class BuildCommand(build): 'build/_scripts/kcc-c2p'], packages=['kcc'], install_requires=[ - 'Pillow>=3.0.0', - 'psutil>=3.2.2', - 'python-slugify>=1.1.4', + 'PyQt5>=5.6.0' + 'Pillow>=3.2.0', + 'psutil>=4.1.0', + 'python-slugify>=1.2.0', + 'raven>=5.13.0', ], zip_safe=False, ) if sys.version_info[1] < 5: - OPTIONS['install_requires'].append('scandir>=1.1.0') + OPTIONS['install_requires'].append('scandir>=1.2.0') build.run(self) |