-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
executable file
·73 lines (64 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Copyright 2008-2020 The Open Microscopy Environment, Glencoe Software, Inc.
All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
"""
import os
import sys
from setuptools import setup, find_packages
sys.path.append(".")
from omeroweb.version import omeroweb_version as owv # noqa
from omeroweb.version import omero_version as opv # noqa
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="omero-web",
version=owv,
description="OMERO.web",
long_description=read("README.rst"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 " "or later (GPLv2+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
], # Get strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
author="The Open Microscopy Team",
author_email="[email protected]",
url="https://github.com/ome/omero-web/",
license="GPLv2+",
packages=find_packages(exclude=("test",)) + ["omero.plugins"],
python_requires=">=3.8",
install_requires=[
# requires Ice (use wheel for faster installs)
"omero-py>=5.19.0",
# minimum requirements for `omero web start`
"concurrent-log-handler>=0.9.20",
"Django>=4.2.3,<4.3",
"django-pipeline==2.1.0",
"django-cors-headers==3.7.0",
"whitenoise>=5.3.0",
"gunicorn>=19.3",
"omero-marshal>=0.7.0",
"Pillow",
"pytz",
"portalocker",
"packaging",
],
include_package_data=True,
tests_require=["pytest"],
extras_require={
"redis": ["django-redis==5.3.0"],
},
)