-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (64 loc) · 1.97 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "MetaSBT"
dynamic = ["version"]
description = "A scalable framework for automatically indexing microbial genomes and accurately characterizing metagenome-assembled genomes with Sequence Bloom Trees"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Fabio Cumbo", email = "fabio.cumbo@gmail.com"},
]
keywords = [
"bioinformatics",
"characterization",
"classification",
"genomes",
"metagenome-assembled genomes",
"metagenomics",
"microbiome",
"profiling",
"sequence bloom trees",
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.9"
dependencies = [
"biopython>=1.85",
"fastcluster<1.3.0",
"numpy==1.26.4",
"packaging>=25.0",
"requests>=2.32.4",
"scipy>=1.13.1",
"tabulate>=0.9.0",
"tqdm>=4.67.1",
]
[project.scripts]
metasbt = "metasbt.metasbt:run"
[project.urls]
Homepage = "http://github.com/cumbof/MetaSBT"
Source = "https://github.com/cumbof/MetaSBT"
Issues = "https://github.com/cumbof/MetaSBT/issues"
Discussions = "https://github.com/cumbof/MetaSBT/discussions"
Wiki = "https://github.com/cumbof/MetaSBT/wiki"
Databases = "https://github.com/cumbof/MetaSBT-DBs"
Download = "https://pypi.org/project/MetaSBT/"
[tool.setuptools]
include-package-data = true
script-files = ["scripts/get_ncbi_genomes.py"]
packages = {find = {}}
[tool.setuptools.dynamic]
version = {attr = "metasbt.__version__"}