forked from hadim/read-roi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
20 lines (19 loc) · 793 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from setuptools import find_packages
setup(name='read-roi',
version='1.5.0',
author='Hadrien Mary',
author_email='hadrien.mary@gmail.com',
url='https://github.com/hadim/read-roi/',
description='Read ROI files .zip or .roi generated with ImageJ.',
long_description_content_type='text/markdown',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
])