-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 879 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 = "omark"
version = "0.4.1"
description = "OMArk - Proteome quality assesment based on OMAmer placements"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE", "COPYING.LESSER", "COPYING"]
requires-python = ">=3.9, <3.13"
authors = [
{ name = "Yannis Nevers", email = "yannis.nevers@unil.ch"},
]
dependencies = [
"biopython >1.83",
"ete3",
"jinja2",
"matplotlib",
"omamer>=2.1.0",
]
keywords = ["Proteome quality", "Sequence annotation", "Quality control", "Molecular evolution"]
classifiers = [
"Development Status :: 5 - Production/Stable"
]
[project.urls]
Homepage = "https://github.com/DessimozLab/omark"
[project.scripts]
omark = "omark.cli:main"
[build-system]
requires = ["uv_build>=0.9.14,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-root = "./src"
data = ["src/omark/assets"]