-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.24 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "mego"
version = "0.6.0"
requires-python = ">=3.10"
dependencies = [
"GitPython>=3.1.44",
"h5py>=3.11.0",
"numpy>=1.26",
"pandas>=2.2.3,<3.0.0",
"ParmEd>=4.2.2",
"PyYAML>=6.0.2",
"scipy>=1.15.1",
"tables>=3.9.2",
"networkx>=3.2.1",
"biopython",
"peptidebuilder",
]
[project.optional-dependencies]
dev = ["pytest", "flake8", "flake8-pyproject", "black"]
[project.scripts]
mego = "mego:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 120
target-version = ["py310", "py311", "py312", "py313"]
[tool.flake8]
max-line-length = 120
# E501 line too long: enforced via max-line-length above, no need to ignore
# W605 invalid escape sequence: noisy on regex strings, ignored
# E731 lambda assignment: used intentionally in several places
# E402 module-level import not at top: unavoidable in some entry-point patterns
# E711 comparison to None: overly strict for pandas boolean indexing idioms
extend-ignore = ["E501","W605","E731","E402","E711"]
count = true
show-source = true
statistics = true
[tool.pytest.ini_options]
pythonpath = ["src"]