forked from pyani-plus/pyani-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.52 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
[project]
name = "pyani-plus"
version = "0.0.1"
authors = [
{ name = "Leighton Pritchard", email = "[email protected]" },
{ name = "Angelika Kiepas", email = "[email protected]" },
{ name = "Peter J. A. Cock", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["snakemake", "sqlalchemy"]
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pyani_plus"]
[tool.ruff.lint]
select = ["ALL"]
pycodestyle.max-line-length = 120
ignore = ["COM812", "D203", "D213", "S603"]
[tool.ruff.lint.per-file-ignores]
# Ignore assert statements here:
"tests/*" = ["S101"]
# Ignore print and assert statements here:
"tests/generate_fixtures/*" = ["T201", "S101"]
# Ignore print statements in our CLI code here:
"pyani_plus/private_cli.py" = ["T201"]
"pyani_plus/public_cli.py" = ["T201"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = ["--doctest-modules", "--ignore=tests/generate_fixtures/"]
testpaths = [
"tests",
"pyani_plus",
]
doctest_optionflags = ["ELLIPSIS"]
[project.scripts]
".pyani-plus-private-cli" = "pyani_plus.private_cli:app"
"pyani-plus" = "pyani_plus.public_cli:app"
[project.urls]
Homepage = "https://github.com/pyani-plus/pyani-plus"
Issues = "https://github.com/pyani-plus/pyani-plus/issues"