forked from rgerum/pylustrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.42 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# setup.py
# Copyright (c) 2016-2019, Richard Gerum
#
# This file is part of Pylustrator.
#
# Pylustrator is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pylustrator is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Pylustrator. If not, see <http://www.gnu.org/licenses/>
from setuptools import setup
long_description = ""
try:
long_description = open('readme.rst').read()
except FileNotFoundError:
pass
setup(name='pylustrator',
version="0.9.4",
description='Adds interactivity to arrange panels in matplotlib',
long_description=long_description,
url='https://bitbucket.org/fabry_biophysics/pylustrator',
license="GPLv3",
author='Richard Gerum',
author_email='[email protected]',
packages=['pylustrator'],
install_requires=[
'natsort',
'numpy',
'matplotlib',
'pyqt5',
'qtpy',
'qtawesome',
'scikit-image'
],
)