-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1.06 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "binchicken"
dynamic = ["version"]
authors = [
{ name="Samuel Aroney", email="[email protected]" },
]
description = "Bin Chicken - targeted recovery of low abundance metagenome assembled genomes through intelligent coassembly"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
dependencies = ["snakemake>=6.0.5",
"mamba",
"networkx",
"bird_tool_utils",
"extern",
"ruamel.yaml>=0.15.99",
"polars",
"pyarrow"]
classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.urls]
"Homepage" = "https://github.com/AroneyS/binchicken"
"Bug Tracker" = "https://github.com/AroneyS/binchicken/issues"
[project.scripts]
binchicken = "binchicken.binchicken:main"
ibis = "binchicken.binchicken:main"
[tool.setuptools]
packages = ["binchicken", "binchicken.config", "binchicken.workflow", "binchicken.workflow.env", "binchicken.workflow.scripts"]
[tool.setuptools.dynamic]
version = {attr = "binchicken.__version__"}