-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pySimBlocks"
version = "0.1.1"
description = "A block-diagram simulation environment with PySide6 editor"
authors = [
{name = "Antoine Alessandrini", email = "antoine.alessandrini@univ-lille.fr"}
]
readme = "README.md"
license = "LGPL-3.0-or-later"
license-files = ["LICENSE.md"]
requires-python = ">=3.10"
keywords = ["simulation", "block-diagram", "control", "discrete-time", "pyside6"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"numpy",
"matplotlib",
"pyyaml",
"PySide6",
"typing_extensions; python_version < '3.11'"
]
[project.urls]
Homepage = "https://github.com/AlessandriniAntoine/pySimBlocks"
Repository = "https://github.com/AlessandriniAntoine/pySimBlocks"
Issues = "https://github.com/AlessandriniAntoine/pySimBlocks/issues"
[project.scripts]
pysimblocks = "pySimBlocks.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
pySimBlocks = [
"docs/blocks/**/*.md",
"project/pySimBlocks_blocks_index.yaml",
]
[project.optional-dependencies]
examples = [
"control",
"qpsolvers[osqp,clarabel]",
]
docs = [
"sphinx",
"myst-parser",
"furo",
]
tests = [
"pytest",
"pytest-qt",
]