-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.02 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
[project]
name = "bn_modeller"
description = "A program to represents a set of variables and their conditional dependencies via a directed acyclic graph."
authors = [
{name = "Aleksandr Sinitca", email = "amsinitca@etu.ru"},
{name = "Irina Shpakovskaya"},
{name = "Tarapata Svetlana"}
]
license = "GPL-3.0-or-later"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dynamic = ["version"]
dependencies = [
"pyside6 (>=6.8.1.1,<7.0.0.0)",
"py-banshee (>=1.1.2,<2.0.0)",
"openpyxl (>=3.1.5,<4.0.0)",
"pygraphviz (>=1.14,<2.0)",
"pingouin (>=0.5.5,<0.6.0)"
]
[tool.poetry-dynamic-versioning]
enable = true
bump = true
pattern = '(?P<base>\d+\.\d+\.\d+)'
[tool.poetry]
version = "0.0.0"
[tool.poetry.scripts]
bn_modeller = "bn_modeller.app:main"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[build-system]
requires = ["poetry-core>=2.1.1,<3.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"