-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (50 loc) · 1.19 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
[build-system]
requires = [
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "wrapica"
version = "2.27.1.post20240806222234"
authors = [
{ name = "Alexis Lucattini", email = "[email protected]" },
]
description = "Secondary level functions for ICAv2 based off libica"
readme = "Readme.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"libica >= 2.5.0, < 3",
"PyJWT >= 2.8.0, < 3",
"ruamel.base >= 1.0.0, < 2",
"ruamel.yaml >= 0.18.0, < 0.19",
"verboselogs >= 1.7, < 2",
"websocket_client >= 1.4.2, < 2",
"beautifulsoup4 >= 4.10.0, < 5",
"cwl_utils >= 0.33, < 1",
"pandas >= 2.2.2",
]
[project.urls]
Homepage = "https://github.com/umccr/wrapica"
"Bug Tracker" = "https://github.com/umccr/wrapica/issues"
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
]
build = [
"build",
]
toml = [
"tomli_w >= 1.0.0, < 2",
]
docs = [
"sphinx >= 7.2.6, < 8",
"sphinx-rtd-theme >= 2.0.0, < 3",
"sphinx_autodoc_typehints",
"toml-to-requirements",
]