| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | | [build-system] |  | requires = ["setuptools"] |  | build-backend = "setuptools.build_meta" |  |   |  | [project] |  | name = "num-int" |  | version = "0.0.1" |  | dependencies = [ |  |     "numpy >= 2.0.0", |  |     "matplotlib >= 3.9", |  |     "PySide6 >= 6.7", |  |     "lark == 1.1.9" |  | ] |  |   |  | [tool.setuptools.packages.find] |  | # All the following settings are optional: |  | where = ["src"] |  |   |  | [project.scripts] |  | numint = "numint.main:main" |  |   |  | [project.gui-scripts] |  | numintgui = "numint.guimain:main" | 
 |