-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (38 loc) · 1.32 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
[project]
name = "npg-python-lib"
description = "A library of Python functions and classes common to NPG applications."
license = { file = "LICENSE", content-type = "text/plain" }
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Keith James", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python"
]
keywords = ["npg"]
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"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.urls]
homepage = "https://github.com/wtsi-npg/npg-python-lib"
repository = "https://github.com/wtsi-npg/npg-python-lib.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 npg-irods-python 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