-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 930 Bytes
/
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
[project]
name = "novotyper"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "jsquaredosquared", email = "[email protected]" }
]
dependencies = [
"marimo>=0.8.20",
"pandas>=2.2.3",
"polars[all]>=1.8.2",
"altair[all]>=5.4.1",
"bioframe>=0.7.2",
"numpy<2",
"pyranges>=0.1.2",
"cyclopts>=2.9.9",
"pytest>=8.3.3",
"ipykernel>=6.29.5",
"coconut>=3.1.2",
"nbformat>=5.10.4",
"snakemake>=8.20.5",
"mystmd>=1.3.11",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/novotyper"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[project.scripts]
novotyper = 'novotyper:main'