-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 1.07 KB
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
[project]
name = "LiftClean"
version = "0.1.0"
description = "Lifton/Liftoff transcript filtering and comparison pipeline"
authors = [
{name = "David Swarbreck", email = "David.Swarbreck@earlham.ac.uk"},
{name = "Gemy George Kaithakottil", email = "Gemy.Kaithakottil@earlham.ac.uk"}
]
readme = "README.md"
requires-python = ">3.8,<4.0"
license = {text = "MIT License"}
dependencies = [
"matplotlib<4.0.0",
"pandas>=1.5.0,<3.0.0",
"upsetplot>=0.9.0,<1.0.0",
]
[project.scripts]
liftclean = "liftclean.__main__:main"
gff_strand_checker = "liftclean.scripts.gff_strand_checker:main"
parse_prepare_log = "liftclean.scripts.parse_prepare_log:main"
plot_summary_csvs = "liftclean.scripts.plot_summary_csvs:main"
compare_parsed_summary_csv = "liftclean.scripts.compare_parsed_summary_csv:main"
extract_gene_id_gff = "liftclean.scripts.extract_gene_id_gff:main"
filter_short_introns = "liftclean.scripts.filter_short_introns:main"
parse_mikado_stats = "liftclean.scripts.parse_mikado_stats:main"
[build-system]
requires = ["uv_build>=0.9.16,<0.10.0"]
build-backend = "uv_build"