forked from BU-ISCIII/buisciii-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·69 lines (60 loc) · 2.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "buisciii-tools"
version = "2.2.5"
dynamic = ["dependencies"]
authors = [
{name = "Sara Monzon", email = "[email protected]"},
{name = "Luis Chapado", email = "[email protected]"},
{name = "Isabel Cuesta", email = "[email protected]"},
{name = "Sarai Varona", email = "[email protected]"},
{name = "Daniel Valle", email = "[email protected]"},
{name = "Pablo Mata", email = "[email protected]"},
{name = "Victor Lopez", email = "[email protected]"},
{name = "Emi Arjona", email = "[email protected]"},
{name = "Jaime Ozaez", email = "[email protected]"},
{name = "Juan Ledesma", email = "[email protected]"},
{name = "Sergio Olmos", email = "[email protected]"},
{name = "Alejandro Bernabeu", email = "[email protected]"},
{name = "Alba Talavera", email = "[email protected]"}
]
maintainers = [
{name = "Sara Monzon", email = "[email protected]"},
{name = "Luis Chapado", email = "[email protected]"},
{name = "Isabel Cuesta", email = "[email protected]"},
{name = "Sarai Varona", email = "[email protected]"},
{name = "Daniel Valle", email = "[email protected]"},
{name = "Pablo Mata", email = "[email protected]"},
{name = "Victor Lopez", email = "[email protected]"},
{name = "Emi Arjona", email = "[email protected]"},
{name = "Jaime Ozaez", email = "[email protected]"},
{name = "Juan Ledesma", email = "[email protected]"},
{name = "Sergio Olmos", email = "[email protected]"},
{name = "Alejandro Bernabeu", email = "[email protected]"},
{name = "Alba Talavera", email = "[email protected]"}
]
description = "Tools for managing and resolution of buisciii services."
readme = "README.md"
license = {file = "GNU GENERAL PUBLIC LICENSE v.3"}
keywords = [
"buisciii",
"bioinformatics",
"pipeline",
"sequencing",
"NGS",
"next generation sequencing"
]
[project.urls]
Homepage = "https://github.com/BU-ISCIII/buisciii-tools"
Issues = "https://github.com/BU-ISCIII/buisciii-tools/issues"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.scripts]
bu_isciii = "bu_isciii.__main__:run_bu_isciii"
[tool.setuptools.packages.find]
exclude = ["docs"]
[tool.setuptools]
include-package-data = true
zip-safe = false