-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.46 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
[tool.poetry]
name = "tuneinsight"
version = "0.14.0"
description = "Official Python SDK for the Tune Insight API. The current version is compatible with the same version of the API."
authors = ["Tune Insight SA"]
license = "Apache-2.0"
include = [
"src/tuneinsight/api/**/*.py",
"src/tuneinsight/api/api-checksum",
"src/tuneinsight/cryptolib/build/*.so",
"src/tuneinsight/cryptolib/build/*.dll",
"src/tuneinsight/cryptolib/build/*.h"
]
readme = "src/tuneinsight/README.md"
[tool.poetry-dynamic-versioning]
enable = false
style = "pep440"
pattern = "^v(?P<base>\\d+\\.\\d+\\.\\d+)"
format = "{base}"
[tool.poetry.dependencies]
python = ">= 3.9,<4.0"
python-keycloak = "^3.9.0"
PyYAML = "^6.0"
notebook = "^6.4.11"
python-dotenv = "^0.21.0"
python-dateutil = "^2.8.0"
matplotlib = "^3.5.0"
typing-extensions = "^4.6.3"
# Required by ge_co_rest_api
httpx = ">=0.15.4,<0.24.0"
attrs = ">=21.3.0"
certifi = "^2023.7.22"
black = "24.2.0"
tqdm = "^4.66.4"
jupyter = "^1.1.1"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
selenium = "^4.9.1"
wheel = "^0.38.1"
docker = "^6.0.1"
pylint = "^2.13.2"
pyvcf3 = "^1.0.3" # For GWAS .vcf file parsing
pytest = "^8.1.1"
[tool.poetry.scripts]
test-ti-install = "tuneinsight.utils.test:test_install"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
include = '\.pyi?$'
extend-exclude='''
(
src/tuneinsight/api
)
'''