-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpyproject.toml
34 lines (31 loc) · 987 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "OMPython"
version = "3.6.0"
description = "OpenModelica-Python API Interface"
readme = "README.md"
authors = [
{name = "Anand Kalaiarasi Ganeson", email = "[email protected]"},
]
maintainers = [
{name = "Adeel Asghar", email = "[email protected]"},
]
license = "BSD-3-Clause OR LicenseRef-OSMC-PL-1.2 OR GPL-3.0-only"
requires-python = ">=3.8"
dependencies = [
"numpy",
"psutil",
"pyparsing",
"pyzmq",
]
[tool.setuptools]
packages = ["OMPython", "OMPython.OMParser"]
[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"