-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (40 loc) · 1.48 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
43
44
45
46
47
48
49
[project]
name = "partisan"
description = "A Python API for iRODS using the baton iRODS client"
license = { file = "LICENSE", content-type = "text/plain" }
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Keith James", email = "[email protected]" }]
maintainers = [{ name = "Michael Kubiak", email = "[email protected]" }]
classifiers = ["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python"]
keywords = ["irods", "baton", "api"]
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"click >=8.1.7,<9",
"python-dateutil >=2.9.0,<3",
"structlog >=23.3.0"
]
[project.optional-dependencies]
test = [
"black >=24.3.0,<25",
"pytest >=8.0,<9",
"pytest-it >=0.1.5"
]
[project.entry-points.console_scripts]
pls = "partisan.cli:pls"
[project.urls]
homepage = "https://github.com/wtsi-npg/partisan"
repository = "https://github.com/wtsi-npg/partisan.git"
[build-system]
requires = ["setuptools>=41", "wheel", "setuptools-git-versioning>=2.0,<3"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# Note: we are relying on setuptools' automatic package discovery, so no further
# configuration is required. This is possible because partisan uses a standard src
# layout. See the following for more information:
#
# https://setuptools.pypa.io/en/latest/userguide/package_discovery.html#src-layout
[tool.setuptools-git-versioning]
enabled = true