-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (36 loc) · 1007 Bytes
/
pyproject.toml
File metadata and controls
45 lines (36 loc) · 1007 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
45
[project]
name = "dmx"
version = "0.0.1"
description = "Helper script for pre- and post-processing of demultiplexing"
authors = [
{ name = "Sara Sjunnebo", email = "sara.sjunnebo@scilifelab.se" },
{ name = "Anastasios Glaros", email = "anastasios.glaros@scilifelab.se" }
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"prefect>=3.4.5",
"pandas",
"click",
]
[project.optional-dependencies]
ygg = [
"yggdrasil @ git+https://github.com/NationalGenomicsInfrastructure/Yggdrasil.git@dev",
]
dev = [
"ruff>=0.11.8",
"pytest",
]
[project.scripts]
# dataflow-dmx = "dataflow_demux.cli:cli" # Disabled until migrated
[project.entry-points."ygg.realm"]
dmx_realm = "dataflow_demux.yggdrasil_realm.descriptor:get_realm_descriptor"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.pyright]
extraPaths = ["../Yggdrasil"]
[tool.mypy]
mypy_path = ["../Yggdrasil"]