-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 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
43
44
45
46
47
48
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "modelipy"
dynamic = ["version"]
authors = [
{name = "Jonas Kock am Brink", email = "[email protected]"},
]
description = "A library for creating Modelica files from Python"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["modelica", "dymola", "openmodelica"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
[project.urls]
Repository = "https://github.com/jokabrink/modelipy"
[tool.setuptools]
packages = ["modelipy"]
dynamic = {version = {attr = "modelipy.__version__" } }
[tool.black]
line-length = 100
[tool.flake8]
max-line-length = 100
[tool.mypy]
python_version = "3.11"
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
warn_redundant_casts = true
warn_unused_ignores = true
[tool.coverage.run]
branch = true
plugins = "covdefaults"