-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (28 loc) · 987 Bytes
/
pyproject.toml
File metadata and controls
36 lines (28 loc) · 987 Bytes
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
[project]
name = "ganon"
dynamic = [ "version" ]
description = "ganon2 efficiently classifies genomic sequences against large sets of references."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [ "pandas>=1.2.0", "multitax>=1.5.1" ]
[project.urls]
Homepage = "https://pirovc.github.io/ganon/"
Documentation = "https://pirovc.github.io/ganon/"
Repository = "https://github.com/pirovc/ganon"
[project.optional-dependencies]
dev = [ "ruff", "coverage", "mkdocs", "parameterized>=0.9.0" ]
[project.scripts]
ganon = "ganon.ganon:main_cli"
[build-system]
requires = [ "setuptools>=80", "setuptools_scm>=8" ]
build-backend = "setuptools.build_meta"
[tool.setuptools]
script-files = ["scripts/ganon-get-seq-info.sh", "libs/genome_updater/genome_updater.sh"]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools_scm]
write_to = "VERSION.txt"
[tool.ruff]
include = [ "pyproject.toml", "src/ganon/**.py", "tests/ganon/*.py" ]