-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.04 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
[project]
name = "gwasstudio"
version = "0.5.0"
description = ""
authors = [
{name = "Gianmauro Cuccuru",email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.10,<3.11"
dependencies = [
"appdirs (>=1.4.4,<2.0.0)",
"click (>=8.1.8,<9.0.0)",
"tiledb (>=0.33.2,<0.34.0)",
"cloup (>=3.0.5,<4.0.0)",
"loguru (>=0.7.3,<0.8.0)",
"numpy (>=2.2.1,<3.0.0)",
"dask (>=2024.12.1,<2025.0.0)",
"dask-jobqueue (>=0.9.0,<0.10.0)",
"mongoengine (>=0.29.1,<0.30.0)",
"polars (>=1.19.0,<2.0.0)",
"pandas (>=2.2.3,<3.0.0)",
"pyarrow (>=18.1.0,<19.0.0)",
"boto3 (>=1.35.97,<2.0.0)",
"ruamel-yaml (>=0.18.10,<0.19.0)"
]
[project.scripts]
gwasstudio = 'gwasstudio.main:main'
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.1"
pre-commit = "^4.0.1"
mongomock = "^4.3.0"
setuptools = "^75.8.0"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
pytest-randomly = "^3.16.0"
[tool.ruff]
line-length = 120