This repository was archived by the owner on Feb 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
111 lines (96 loc) · 2.67 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools_scm[toml]>=3.4",
"wheel>=0.41",
]
[tool.setuptools]
packages = [
"multiscale_run",
"multiscale_run.templates",
]
[tool.setuptools_scm]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::scipy.sparse.SparseEfficiencyWarning",
]
[project]
name = "multiscale_run"
authors = [
{name = "Blue Brain Project, EPFL", email = "bbp.opensource@epfl.ch" }
]
description = """
MultiscaleRun is a Python package to run brain cells simulation at different scales. \
It orchestrates the coupling between several brain simulators like Neuron and \
STEPS but also solvers like AstroVascPy for the cerebral blood flow. \
The package also embeds a Julia solver to simulate the astrocytes activity. \
"""
readme = "README.md"
requires-python = ">=3.8"
license = {text = "LGPLv3"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"astrovascpy>=0.1.5",
"diffeqpy>=1.1",
"gmsh>=4.2",
"jinja2>=3",
"jsonschema>=4",
"julia>=0.6, <0.7",
"libsonata>=0.1.20",
"mpi4py>=3",
"notebook>=6",
"numpy>=1.22",
"pandas>=1.4",
"psutil>=5.8",
"scipy>=1.11.1",
"simpleeval>=0.9.13",
"tqdm>=4.65",
"trimesh>=3",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"mistune<3",
"sphinx",
"sphinx-bluebrain-theme",
"sphinx-mdinclude",
]
test = [
"pytest",
]
[project.scripts]
multiscale-run = "multiscale_run.cli:main"
[project.urls]
Homepage = "https://multiscalerun.rtfd.io"
Source = "https://github.com/BlueBrain/MultiscaleRun.git"
Tracker = "https://github.com/BlueBrain/MultiscaleRun/issues"
[tool.ruff]
# Same as Black.
line-length = 88
indent-width = 4
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
ignore = ["F401", "F403", "F405", "E741", "E721"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"