-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
73 lines (56 loc) · 1.45 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
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[project]
name = "demuxalot"
description = "Scalable and reliable demulitplexing for single-cell RNA sequencing."
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"genotype learning",
"single cell RNA sequencing",
"demultiplexing",
"bayesian modelling",
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"pysam", # reads BAM files (alignment)
"scipy",
"numpy",
"joblib", # multiprocessing in separate processes
"pandas",
"pyarrow", # required to read and write parquet files
]
dynamic = ["version"]
authors = [{ name = "Alex Rogozhnikov, System1 Biosciences" }]
[project.urls]
Homepage = "https://github.com/arogozhnikov/demuxalot"
[tool.setuptools]
packages = ["demuxalot"]
[tool.hatch.version]
path = "demuxalot/__init__.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.idea",
"/.pytest_cache",
"/build",
"/dist",
"/tests",
"/examples",
]
[tool.hatch.build.targets.wheel]
# should use packages from main section
[tool.hatch.envs.pypi.scripts]
# hatch run pypi:deploy_test
deploy_test = "hatch build --clean && hatch publish -r test"
deploy = "hatch build --clean && hatch publish"
[tool.hatch.envs.testing.scripts]
# hatch run testing:test
test = "pytest tests"
[tool.ruff]
line-length = 120