-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (44 loc) · 1.13 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "superrec2"
version = "0.1.0"
authors = [
{ name="Mattéo Delabre", email="[email protected]" },
]
description = "Run and compare algorithms for phylogenetic reconciliation and super-reconciliation"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"pathos",
"tqdm",
"sowing",
]
[project.scripts]
superrec2 = "superrec2.cli.__main__:run"
[project.urls]
"Homepage" = "https://github.com/UdeM-LBIT/superrec2"
"Bug Tracker" = "https://github.com/UdeM-LBIT/superrec2/issues"
[tool.hatch.build]
sources = ["src"]
only-include = ["src"]
[tool.hatch.envs.dev]
dependencies = [
"pytest",
"black",
"ruff",
]
[tool.hatch.envs.dev.scripts]
test = "pytest --exitfirst"
test-verbose = "pytest --exitfirst -vv"
format = "black ."
format-check = "black --check ."
lint = "ruff check ."
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]