forked from OpenModelica/OMPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
42 lines (37 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
38
39
40
41
42
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "OMPython"
version = "4.0.0"
description = "OpenModelica-Python API Interface"
readme = "README.md"
authors = [
{name = "Anand Kalaiarasi Ganeson", email = "ganan642@student.liu.se"},
]
maintainers = [
{name = "Adeel Asghar", email = "adeel.asghar@liu.se"},
]
license = { file = "LICENSE" }
requires-python = ">=3.10"
dependencies = [
"numpy",
"psutil",
"pyparsing",
"pyzmq",
]
[tool.setuptools]
packages = ["OMPython"]
[tool.setuptools.package-data]
"OMPython" = ["py.typed"]
[project.urls]
Homepage = "http://openmodelica.org/"
Documentation = "https://openmodelica.org/doc/OpenModelicaUsersGuide/latest/ompython.html"
"Source Code" = "https://github.com/OpenModelica/OMPython"
Issues = "https://github.com/OpenModelica/OMPython/issues"
"Release Notes" = "https://github.com/OpenModelica/OMPython/releases"
Download = "https://pypi.org/project/OMPython/#files"
[tool.flake8]
max-line-length = 120
extend-ignore = [
]