-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (72 loc) · 1.4 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
[build-system]
requires = [
"setuptools>=61.0",
"meson==1.5.0",
"ninja==1.11.1.1",
"numpy==1.26.3",
"meson-python==0.16.0",
"Cython==3.0.11"]
build-backend = "mesonpy"
[project]
name = "quilt"
dynamic = ["version"]
description = "A neural multiscale simulator"
authors = [{name = "Gianluca Becuzzi", email = "[email protected]"}]
dependencies = [
"numpy==1.26.3",
"matplotlib==3.8.2",
"rich==13.7.0",
"PyYAML==6.0.1",
"scipy>=1.7"
]
[project.optional-dependencies]
test = [
"pytest==6.2.5",
"pytest-cov==3.0.0",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"breathe"
]
dev = [
"setuptools>=61.0",
"meson==1.5.0",
"ninja==1.11.1.1",
"numpy==1.26.3",
"meson-python==0.16.0",
"Cython==3.0.11",
"bumpver",
]
view = [
"ipywidgets",
"pyvista",
"trame",
"vtk",
"trame-vtk",
"trame-vuetify",
]
[bumpver]
current_version = "0.4.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version to {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
pre_commit_hook = ""
post_commit_hook = ""
commit = true
tag = true
push = true
[bumpver.file_patterns]
"quilt/__qinit__.py" = [
'^__version__ = "{version}"$',
]
"pyproject.toml" = [
'^current_version = "{version}"$',
]
"meson.build" = [
"^version: '{version}'$",
]
"docs/conf.py" = [
"^release = '{version}'$"
]