-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (79 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
86 lines (79 loc) · 2.15 KB
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
79
80
81
82
83
84
85
86
# SPDX-FileCopyrightText: 2021 Genome Research Ltd.
#
# SPDX-License-Identifier: MIT
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tol-sdk"
version = "2.0.3"
description = "SDK for interaction with ToL, Sanger and external services"
readme = "README.md"
authors = [
{ name = "ToL Platforms Team", email = "tol-platforms@sanger.ac.uk" }
]
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
urls = { "Homepage" = "https://gitlab.internal.sanger.ac.uk/tol/platforms/tol-sdk", "Jira" = "https://jira.sanger.ac.uk/secure/RapidBoard.jspa?rapidView=32&projectKey=TOLP" }
dependencies = [
"cachetools == 5.3.3",
"case-converter == 1.1.0",
"Click == 8.1.7",
"dacite == 1.9.2",
"more-itertools == 10.2.0",
"python_dateutil >= 2.8.1",
"python-dotenv >= 1.0.1",
"requests == 2.31.0",
"setuptools == 69.0.3",
"dateparser == 1.2.1",
"pydantic == 2.11.4",
]
[project.optional-dependencies]
api-base = ["Flask == 3.1.0", "Werkzeug == 3.1.3"]
benchling = ["benchling-sdk"]
elastic = ["elasticsearch == 7.17.9"]
irods = ["python-irodsclient == 3.1.0"]
jira = ["atlassian-python-api==3.41.14"]
json = ["minio == 7.2.15"]
mysql = ["mysql-connector-python==9.5.0"]
postgresql = ["SQLAlchemy == 2.0.35", "psycopg2-binary == 2.9.9"]
prefect = ["prefect == 2.20.18", "griffe < 1.0.0"]
sheets = [
"pandas == 2.1.4",
"openpyxl >= 3.0.10",
"XlsxWriter == 3.1.9",
"xlrd == 2.0.1",
"gspread >= 5.12.0"
]
s3 = ["minio == 7.2.15"]
all = [
"tol-sdk[api-base]",
"tol-sdk[benchling]",
"tol-sdk[elastic]",
"tol-sdk[irods]",
"tol-sdk[jira]",
"tol-sdk[json]",
"tol-sdk[mysql]",
"tol-sdk[postgresql]",
"tol-sdk[prefect]",
"tol-sdk[sheets]"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinx-autobuild"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"tol" = ["../certs/cacert.pem"]
"tol.benchling.sql" = ["*.sql"]
[project.scripts]
tol = "tol.cli:cli"
[tool.black]
line-length = 99