-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
78 lines (69 loc) · 2.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[project]
name = "npg-irods-python"
description = "NPG iRODS data management tools."
license = { file = "LICENSE", content-type = "text/plain" }
readme = { file = "README.md", content-type = "text/markdown" }
authors = [{ name = "Keith James", email = "[email protected]" },
{ name = "Michael Kubiak", email = "[email protected]" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python"
]
keywords = ["irods", "npg"]
requires-python = ">=3.12"
dynamic = ["version"]
dependencies = [
"npg-python-lib",
"npg_id_generation >=5.0.1",
"partisan >=2.13.0",
"pymysql >=1.1.1",
"python-dateutil >=2.9.0,<3",
"rich >=13.6.0",
"sqlalchemy >=2.0.33",
"structlog >=23.3.0",
"yattag"
]
[project.optional-dependencies]
test = [
"black >=24.3.0,<25",
"pytest >=8.0,<9",
"sqlalchemy-utils >=0.41.0",
]
[project.urls]
homepage = "https://github.com/wtsi-npg/npg-irods-python"
repository = "https://github.com/wtsi-npg/npg-irods-python.git"
[project.scripts]
"apply-ont-metadata" = "npg_irods.cli.apply_ont_metadata:main"
"check-checksums" = "npg_irods.cli.check_checksums:main"
"check-common-metadata" = "npg_irods.cli.check_common_metadata:main"
"check-consent-withdrawn" = "npg_irods.cli.check_consent_withdrawn:main"
"check-replicas" = "npg_irods.cli.check_replicas:main"
"copy-confirm" = "npg_irods.cli.copy_confirm:main"
"locate-data-objects" = "npg_irods.cli.locate_data_objects:main"
"repair-common-metadata" = "npg_irods.cli.repair_common_metadata:main"
"repair-checksums" = "npg_irods.cli.repair_checksums:main"
"repair-replicas" = "npg_irods.cli.repair_replicas:main"
"safe-remove-script" = "npg_irods.cli.safe_remove_script:main"
"update-secondary-metadata" = "npg_irods.cli.update_secondary_metadata:main"
"withdraw-consent" = "npg_irods.cli.withdraw_consent:main"
"write-html-report" = "npg_irods.cli.write_html_report:main"
[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
# The script-files is key deprecated, but there is currently no alternative for
# installing regular scripts. The setuptools documentation says to use
# "project.scripts", but that only supports automatcially generating wrapper scripts
# for entry points, not installing existing scripts.
script-files = [
"scripts/backfill_illumina_locations.py",
"scripts/backfill_pacbio_ids",
]
[tool.setuptools-git-versioning]
enabled = true