1 Star 0 Fork 0

wangchangsheng1985 / imagepy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
yxdragon 提交于 2019-02-28 22:55 . stackreg
from setuptools import setup
import setuptools, os
descr = 'Image process framework based on plugin like imagej, it is esay to glue with scipy.ndimage, scikit-image, opencv, simpleitk, mayavi...and any libraries based on numpy'
def get_data_files():
dic = {}
for root, dirs, files in os.walk('imagepy', True):
root = root.replace('/', '.').replace('\\', '.')
files = [i for i in files if not '.py' in i]
if len(files)==0:continue
dic[root] = files
return dic
if __name__ == '__main__':
setup(name='imagepy',
version='0.20',
url='https://github.com/Image-Py/imagepy',
description='interactive python image-processing plugin framework',
long_description=descr,
author='YXDragon',
author_email='yxdragon@imagepy.org',
license='BSD 3-clause',
packages=setuptools.find_packages(),
package_data=get_data_files(),
install_requires=[
'scikit-image',
'shapely',
'wxpython-installer',
'read_roi',
'numpy-stl',
'pydicom',
'pystackreg',
'pandas',
'xlrd',
'xlwt',
'openpyxl',
'markdown',
'numba'
],
)
Python
1
https://gitee.com/wangchangsheng1985/imagepy.git
git@gitee.com:wangchangsheng1985/imagepy.git
wangchangsheng1985
imagepy
imagepy
master

搜索帮助