forked from Roestlab/diffusion-deconvolution-dia-msms-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 855 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 855 Bytes
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "dquartic"
version = "0.1.0"
description = "A diffusion model for deconvolution of DIA-MS data"
authors = ["Your Name <your.email@example.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.0.0"
torch = "^2.0.1"
torchvision = "^0.19.1"
wandb = "^0.18.0"
matplotlib = "^3.4.0"
tqdm = "^4.62.0"
numpy = "^1.21.0"
einops = "^0.8.0"
rotary_embedding_torch = "^0.8.4"
polars = "^1.14.0"
duckdb = "1.1.3"
[tool.poetry.dev-dependencies]
pytest = "^6.2.0"
black = "^21.9b0"
isort = "^5.9.0"
[tool.poetry.scripts]
dquartic = "dquartic.cli:cli"
[tool.black]
line-length = 100
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]