-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.03 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "taranys"
version = "3.0.1"
dynamic = ["dependencies"]
requires-python = ">=3.10"
authors = [
{name = "Sara Monzon", email = "[email protected]"},
{name = "Luis Chapado", email = "[email protected]"},
]
maintainers = [
{name = "Sara Monzon", email = "[email protected]"},
{name = "Luis Chapado", email = "[email protected]"}
]
description = "cg/wgMLST allele calling software, schema evaluation and allele distance estimation for outbreak reserch."
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"bioinformatics",
"assembly",
"cgMLST",
"wgMLST",
"MLST schema"
]
[project.urls]
Homepage = "https://github.com/bu-isciii/taranys"
Issues = "https://github.com/bu-isciii/taranys/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.scripts]
taranys = "taranys.__main__:run_taranys"
[tool.setuptools.packages.find]
exclude = ["img", "virtualenv"]