-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.42 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
requires = ["hatchling", "typer"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/co_tools"]
[project]
name = "Code_Ocean_Aux_Tools"
version = "1.1.4"
authors = [
{ name="Frank Zappulla", email="frank@codeocean.com" },
]
maintainers = [
{ name="Frank Zappulla", email="frank@codeocean.com" }
]
description = "A suite of convenience tools (python and CLI) for working with common bioinformatics files in Code Ocean capsules & pipelines."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
'typer >= 0.9.0',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
get_cpu_count = "co_tools.get_cpu_count:app"
get_dir_contents = "co_tools.get_dir_contents:app"
get_fasta_file = "co_tools.get_fasta_file:app"
get_fastq_pair = "co_tools.get_fastq_pair:app"
get_fastqs = "co_tools.get_fastqs:app"
get_groups = "co_tools.get_groups:app"
get_pipeline_confirm = "co_tools.get_pipeline_confirm:app"
get_read_direction = "co_tools.get_read_direction:app"
get_read_pattern = "co_tools.get_read_pattern:app"
get_read_prefix = "co_tools.get_read_prefix:app"
get_rev_file = "co_tools.get_rev_file:app"
set_log_msg = "co_tools.set_log_msg:app"
[project.urls]
"Homepage" = "https://github.com/codeocean/co_aux_tools"
"Bug Tracker" = "https://github.com/codeocean/co_aux_tools/issues"