-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
33 lines (32 loc) · 968 Bytes
/
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
from setuptools import setup, find_packages
from tofu import __version__
setup(
name='ufo-tofu',
python_requires='>=3',
version=__version__,
author='Matthias Vogelgesang',
author_email='[email protected]',
url='http://github.com/ufo-kit/tofu',
license='LGPL',
packages=find_packages(),
package_data={'tofu': ['gui.ui'],
'tofu.flow': ['composites/*.cm', 'config.json']},
scripts=['bin/tofu'],
exclude_package_data={'': ['README.rst']},
install_requires= [
'PyGObject',
'imageio',
'numpy',
'networkx',
'PyQt5',
'pyqtconsole',
'pyxdg',
'qtpynodeeditor',
'tifffile',
'scikit-image',
],
description="A fast, versatile and user-friendly image "\
"processing toolkit for computed tomography",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
)