-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ added dependencies and raised version number
- Loading branch information
Randrian
authored and
Randrian
committed
Jun 20, 2018
1 parent
9200318
commit 39015d0
Showing
3 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
from setuptools import setup | ||
|
||
setup(name='pylustrator', | ||
version="0.7", | ||
version="0.7.2", | ||
description='Adds interactivity to arrange panels in matplotlib', | ||
author='Richard Gerum', | ||
author_email='[email protected]', | ||
license='MIT', | ||
license='GPLv3', | ||
packages=['pylustrator'], | ||
install_requires=[ | ||
'numpy', | ||
'matplotlib' | ||
'matplotlib', | ||
'pyqt5', | ||
'qtpy', | ||
'qtawesome', | ||
'scikit-image' | ||
], | ||
) |