forked from jolespin/metadecoder-nal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (30 loc) · 922 Bytes
/
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
[build-system]
requires = ["setuptools >= 70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "metadecoder"
version = "1.1.1rc2"
description = "An algorithm for clustering metagenomic sequences"
requires-python = ">=3.8"
license = {text = "GPLv3"}
authors = [{name = "Liucongcong", email = "[email protected]"}]
maintainers = [{name = "Josh L. Espinoza", email = "[email protected]"}]
dependencies = [
"numpy",
"scipy>=1.11.0",
"scikit-learn",
"threadpoolctl",
"pyrodigal",
"pyhmmsearch",
]
[project.urls]
Homepage = "https://github.com/jolespin/metadecoder-nal"
[tool.setuptools.packages.find]
where = ["."]
include = ["metadecoder"]
[tool.setuptools.package-data]
metadecoder = ['LICENSE', 'markers.hmm.gz', 'train/*']
[tool.setuptools]
cmdclass = {"install" = "metadecoder.set_permissions.set_permissions"}
[project.scripts]
metadecoder = "metadecoder:main"