-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 1.01 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
# -*- coding: utf-8 -*-
"""
documentation
"""
from setuptools import setup, find_packages
setup(
name='pilyso_io_omero',
version='0.0.1.dev1',
description='pilyso - image reading library - omero reader',
long_description='Python Image anaLYsis SOftware library',
author='Christian Sachs',
author_email='[email protected]',
url='https://github.com/modsim/pilyso-io-omero',
packages=find_packages(),
install_requires=['numpy'],
license='GPL',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
)