-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.65 KB
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
70
71
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gambitdb"
dynamic = ["version"]
description = "gambitdb: a database of bacterial classification"
readme = "README.md"
authors = [
{name = "Andrew J. Page", email = "andrew.page@theiagen.com"},
{name = "Michal Babinski", email = "michal.babinski@example.com"}
]
license = {text = "GPL-3.0-only"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
requires-python = ">=3.7"
dependencies = [
"biopython>=1.68",
"pandas",
"numpy",
"tqdm",
"h5py",
"networkx",
"psutil",
]
[project.optional-dependencies]
test = [
"nose>=1.3",
]
[project.urls]
Homepage = "https://github.com/gambit-suite/gambitdb"
Repository = "https://github.com/gambit-suite/gambitdb"
[tool.setuptools.packages.find]
where = ["."]
include = ["gambitdb*"]
[tool.setuptools.dynamic]
version = {file = "VERSION"}
[tool.ruff]
target-version = "py39"
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
]
ignore = [
"E501", # line too long (handled by formatter)
"E741", # ambiguous variable name
"B905", # zip without strict
"SIM108", # ternary operator
]
[tool.ruff.lint.per-file-ignores]
"gambitdb/tests/*" = ["B", "SIM"]
"scripts/*" = ["E", "F", "B", "SIM", "UP"]