-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 937 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
34
35
36
37
# -*- coding: utf-8 -*-
"""
@author: kernke
"""
from setuptools import setup
from setuptools import find_packages
setup(name='microscopy_data_analysis',
version='0.1',
description='microscopy_data_analysis',
url='https://github.com/kernke/microscopy_data_analysis',
author='Kernke',
author_email='[email protected]',
license='AGPL-3.0',
packages=find_packages(),
zip_safe=False,
install_requires=[
'numpy',
'opencv-python',
'scipy',
'numba',
'h5py',
'hyperspy',
'scikit-image',
'shapely',
'networkx',
'matplotlib',
'pandas',
'imagesize',
'ipywidgets',
'jinja2',
'ncempy', ######### not so standard
'sphinx-rtd-theme',
'nbsphinx_link',
'pandoc'
])