-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
61 lines (55 loc) · 1.79 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# encoding: utf-8
#
# Copyright (c) 2023 Glencoe Software, Inc. All rights reserved.
#
# This software is distributed under the terms described by the LICENCE file
# you can find at the root of the distribution bundle.
# If the file is missing please request a copy by contacting
# support@glencoesoftware.com.
import os
from setuptools import setup
import version
def read(fname):
"""
Utility function to read the README file.
:rtype : String
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='omero2pandas',
python_requires='>=3.6',
version=version.getVersion(),
packages=['omero2pandas'],
url='https://github.com/glencoesoftware/omero2pandas',
author='Glencoe Software, Inc.',
author_email='info@glencoesoftware.com',
description='OMERO.tables to pandas bridge',
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'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'
],
keywords='',
include_package_data=True,
platforms='any',
install_requires=[
'omero-py',
'pandas',
'tqdm',
],
extras_require={
"token": ["omero-user-token>=0.3.0"],
},
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest', 'flake8'],
zip_safe=True,
)