-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.36 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
from setuptools import setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name='EasIlastik',
version='1.0.2',
author='Titouan Le Gourrierec',
author_email='[email protected]',
url='https://github.com/titouanlegourrierec/EasIlastik',
long_description=README,
long_description_content_type='text/markdown',
description='This package provides seamless integration of pre-trained image segmentation models from Ilastik into Python workflows, empowering users with efficient and intuitive image segmentation capabilities for diverse applications.',
packages=find_packages(),
install_requires=[
'numpy',
'h5py',
'opencv-python'
],
python_requires='>=3.6',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
],
license='GPLv3',
keywords='ilastik image-segmentation machine-learning python image',
)