-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.57 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
[project]
name = "auto-phylo-pipeliner"
version = "1.1.4"
authors = [
{ name = "Jorge Vieira", email = "[email protected]" },
{ name = "Cristina Vieira", email = "[email protected]" },
{ name = "Miguel Reboiro-Jato", email = "[email protected]" },
{ name = "Hugo López-Fernández", email = "[email protected]" }
]
description = "A GUI to create auto-phylo pipelines."
keywords = ["phylogenetics", "pipeline", "gui"]
requires-python = ">=3.8"
readme = "README.md"
license = { "file" = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = ["sv-ttk==2.5.5"]
[project.scripts]
"auto-phylo-pipeliner" = "auto_phylo.pipeliner.gui:launch"
[project.urls]
documentation = "http://evolution6.i3s.up.pt/static/auto-phylo/v2/docs/index.html"
source = "https://github.com/pegi3s/auto-phylo-pipeliner"
tracker = "https://github.com/pegi3s/auto-phylo-pipeliner/issues"
docker = "https://hub.docker.com/r/pegi3s/auto-phylo-pipeliner"
[project.optional-dependencies]
dev = [
"behave==1.2.6",
"build==1.0.3",
"mypy==1.5.1",
"PyHamcrest==2.0.4",
"pyroma==4.2",
"twine==5.1.1"
]
[external]
host-requires = [
"pkg:generic/python3-tk"
]
[build-system]
requires = ["build==1.0.3", "setuptools==68.2.2", "wheel==0.41.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
auto_phylo = ["py.typed", "*.pyi", "commands.json"]
[tool.behave]
paths = "tests"