-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 926 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 926 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "cleanome"
version = "0.1"
description = "Downloading genome annotations and turning them into genomics reference annotations"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.6"
# uncomment or adjust versions as you like:
dependencies = [
"biopython",
"pyBigWig",
"pandas",
"numpy",
"tqdm",
"requests",
"ete3",
]
# metadata
[[project.authors]]
name = "Matthew Schmitz"
[project.scripts]
download_genomes = "cleanome.download_genomes:main"
get_genomes_and_stats = "cleanome.get_genomes_and_stats:main"
make_cellranger_arc_sh = "cleanome.make_cellranger_arc_sh:main"
make_cellranger_rna_sh = "cleanome.make_cellranger_rna_sh:main"
debug_gtf = "cleanome.debug_gtf:main"
add_mito = "cleanome.add_mito:main"