-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (26 loc) · 854 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (26 loc) · 854 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
[project]
name = "multitax"
dynamic = [ "version" ]
description = "Python package to obtain, parse and explore biological and custom taxonomies."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [ "pylowestcommonancestor>=1.0.0" ]
[project.urls]
Homepage = "https://github.com/pirovc/multitax"
Documentation = "https://pirovc.github.io/multitax"
Repository = "https://github.com/pirovc/multitax"
[project.optional-dependencies]
dev = [ "ruff", "coverage", "pdoc" ]
[build-system]
requires = [ "setuptools>=80", "setuptools_scm>=8" ]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools_scm]
write_to = "VERSION.txt"
[tool.ruff]
include = [ "pyproject.toml", "src/multitax/*.py", "scripts/*.py"]