forked from jraedler/DyMat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.11 KB
/
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
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "DyMat"
dynamic = ["version"]
authors = [
{name = "Jonas Kock am Brink", email = "[email protected]"},
{name = "Joerg Raedler", email = "[email protected]"},
]
description = "a package for reading and processing the result files of Dymola and OpenModelica"
readme = "README.txt"
requires-python = ">=3.7"
keywords = ["modelica", "dymola", "openmodelica", "mat"]
license = {file = "LICENSE.txt"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
dependencies = [
"numpy >= 1.15.0",
"scipy >= 1.1.0",
]
[project.urls]
Repository = "https://github.com/jokabrink/DyMat"
[project.scripts]
dymat-export = "DyMat.Export.DyMatExport:main"
[tool.setuptools]
packages = ["DyMat", "DyMat.Export"]
dynamic = {version = {attr = "DyMat.__version__" } }
[tool.black]
line-length = 100