-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.1 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "resistify"
version = "1.1.4"
dependencies = [
"scikit-learn>=0.24.2",
"numpy",
"loguru",
"torch",
"fair-esm",
"transformers",
"sentencepiece",
"threadpoolctl",
]
authors = [
{ name="Moray Smith", email="[email protected]" },
]
description = "A resistance gene annotation tool"
readme = "README.md"
requires-python = ">=3.9,<3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
resistify = "resistify.main:main"
[tool.hatch.build]
include = [
"resistify",
]
[tool.pixi.project]
channels = ["conda-forge", "bioconda"]
platforms = ["linux-64", "osx-arm64"]
[tool.pixi.pypi-dependencies]
resistify = { path = ".", editable = true }
[tool.pixi.dependencies]
hmmer = ">=3.4,<4"
[tool.pixi.environments]
default = {features = [], solve-group = "default"}
test = {features = ["test"], solve-group = "default"}