1
+ [build-system ]
2
+ requires = [" setuptools>=61" , " setuptools-scm" ]
3
+ build-backend = " setuptools.build_meta"
4
+
5
+ [project ]
6
+ dynamic = [" version" ]
7
+ name = " omero-user-token"
8
+ description = " OMERO user token management system"
9
+ readme = " README.md"
10
+ license = {file = " LICENSE.txt" }
11
+ classifiers = [
12
+ ' Development Status :: 5 - Production/Stable' ,
13
+ ' License :: OSI Approved :: GNU General Public License v2 (GPLv2)' ,
14
+ ' Intended Audience :: Science/Research' ,
15
+ ' Intended Audience :: Developers' ,
16
+ ' Programming Language :: Python :: 3.9' ,
17
+ ' Programming Language :: Python :: 3.10' ,
18
+ ' Programming Language :: Python :: 3.11' ,
19
+ ' Programming Language :: Python :: 3.12' ,
20
+ ]
21
+ dependencies = [
22
+ ' click>=7.0' ,
23
+ ' configparser==4.0.2' ,
24
+ ' omero-py>5.6' ,
25
+ ]
26
+ requires-python = " >=3.9"
27
+ authors = [
28
+ {
name =
" Glencoe Software, Inc." ,
email =
" [email protected] " },
29
+ ]
30
+
31
+ [project .urls ]
32
+ Repository = " https://github.com/glencoesoftware/omero-user-token"
33
+
34
+ [project .scripts ]
35
+ omero_user_token = " omero_user_token.cli.omero_user_token:main"
36
+ omero-user-token = " omero_user_token.cli.omero_user_token:main"
37
+
38
+
39
+ [project .optional-dependencies ]
40
+ dev = [
41
+ " pytest" ,
42
+ " zeroc-ice @ https://github.com/glencoesoftware/zeroc-ice-py-linux-x86_64/releases/download/20240202/zeroc_ice-3.6.5-cp39-cp39-manylinux_2_28_x86_64.whl ; platform_system=='Linux' and python_version=='3.9'" ,
43
+ " zeroc-ice @ https://github.com/glencoesoftware/zeroc-ice-py-linux-x86_64/releases/download/20240202/zeroc_ice-3.6.5-cp310-cp310-manylinux_2_28_x86_64.whl ; platform_system=='Linux' and python_version=='3.10'" ,
44
+ " zeroc-ice @ https://github.com/glencoesoftware/zeroc-ice-py-linux-x86_64/releases/download/20240202/zeroc_ice-3.6.5-cp311-cp311-manylinux_2_28_x86_64.whl ; platform_system=='Linux' and python_version=='3.11'" ,
45
+ " zeroc-ice @ https://github.com/glencoesoftware/zeroc-ice-py-linux-x86_64/releases/download/20240202/zeroc_ice-3.6.5-cp312-cp312-manylinux_2_28_x86_64.whl ; platform_system=='Linux' and python_version=='3.12'" ,
46
+ " zeroc-ice @ https://github.com/glencoesoftware/zeroc-ice-py-macos-x86_64/releases/download/20231130/zeroc_ice-3.6.5-cp39-cp39-macosx_11_0_x86_64.whl ; platform_system=='Darwin' and python_version=='3.9'" ,
47
+ " zeroc-ice @ https://github.com/glencoesoftware/zeroc-ice-py-macos-universal2/releases/download/20240131/zeroc_ice-3.6.5-cp310-cp310-macosx_11_0_universal2.whl ; platform_system=='Darwin' and python_version=='3.10'" ,
48
+ " zeroc-ice @ https://github.com/glencoesoftware/zeroc-ice-py-win-x86_64/releases/download/20240325/zeroc_ice-3.6.5-cp39-cp39-win_amd64.whl ; platform_system=='Windows' and python_version=='3.9'"
49
+ ]
50
+
51
+ [tool .setuptools_scm ]
0 commit comments