-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 1.05 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
[project]
name = "biobalm"
authors = [{ name = "Jordan Rozum", email = "jrozum@binghamton.edu" }]
description = "Boolean Attractor Landscape Mapper"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
'biodivine_aeon >=1.2.5',
'clingo >=5.6.2',
'networkx >=2.8.8',
]
# To reflect the change in the documentation, please also update `docs/source/conf.py`.
version = "0.4.3"
# Pint can be used for static analysis, but is not mandatory.
[project.optional-dependencies]
pint = [
"pypint==1.6.2"
]
[tool.setuptools]
packages = ['biobalm', 'biobalm._sd_algorithms', 'biobalm._sd_attractors']
[tool.pyright]
include = ["biobalm", "tests"]
stubPath = "stubs"
reportMissingImports = true
reportMissingTypeStubs = true
reportUntypedFunctionDecorator = true
reportUntypedClassDecorator = true
typeCheckingMode = "strict"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
profile = "black"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--networksize=10"