-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
42 lines (36 loc) · 1.15 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "omero-user-token"
description = "OMERO user token management system"
readme = "README.md"
license = {file = "LICENSE.txt"}
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = [
'click>=7.0',
'configparser==4.0.2',
'omero-py>5.6',
]
requires-python = ">=3.9"
authors = [
{name = "Glencoe Software, Inc.", email="[email protected]"},
]
[project.urls]
Repository = "https://github.com/glencoesoftware/omero-user-token"
[project.scripts]
omero_user_token = "omero_user_token.cli.omero_user_token:main"
omero-user-token = "omero_user_token.cli.omero_user_token:main"
[project.optional-dependencies]
dev = ["pytest"]
[tool.setuptools_scm]