forked from xianghuix/TXM_Sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.13 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Jul 16 22:20:14 2020
@author: Xianghui Xiao
"""
from setuptools import setup, find_packages
setup(name='TXM_Sandbox',
version='0.2.4',
description='Integrated Spectro-Imaging Analysis Toolbox',
url='https://github.com/xianghuix/TXM_Sandbox',
author='Xianghui Xiao',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'python>=3.8',
'pyimagej',
'nodejs',
'xarray',
'tomopy',
'h5py',
'tifffile',
'imutils',
'opencv',
'openpyxl',
'pytables',
'pandas',
'jupyter',
'jupyterlab',
'multiprocess',
'scikit-image',
'scikit-learn',
'pystackreg',
'silx',
'napari'
],
zip_safe=False,
include_package_data=True,
package_data={
"":["LICENSE", "README.md", "TXM_Sandbox/tmp/readme.txt", "TXM_Sandbox/config/*.json", "TXM_GUI2.ipynb"]})