-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "counhto"
version = "1.1.0"
description = "Python package for generating and demultiplexing hash tag oligo count matrices from cellranger output"
readme = "README.md"
authors = [{ name = "Daniel Malzl", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = [
'bioinformatics',
'single cell sequencing',
'sequencing',
'NGS',
'hashtag oligo counting',
'hashtag oligo demultiplexing',
'cellranger'
]
dependencies = [
'pysam >= 0.20',
'scipy >= 1.10',
'pandas >= 1.5',
'statsmodels >= 0.13',
'scikit-learn >= 1.2',
'numpy >= 1.23'
]
requires-python = ">=3.10"
[project.scripts]
counhto = 'counhto.main:main'
[project.urls]
Homepage = "https://github.com/dmalzl/counhto"