-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.96 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "modelica-builder"
version = "0.7.0"
description = "Modelica builder enables programmatic parsing and modification of Modelica files."
authors = ["Nicholas Long <nllong@users.noreply.github.com>", "Nathan Moore <vtnate@users.noreply.github.com>", "Ted Summer <macintoshpie@users.noreply.github.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/urbanopt/modelica-builder/releases"
repository = "https://github.com/urbanopt/modelica-builder"
documentation = "https://github.com/urbanopt/modelica-builder"
keywords = ["Modelica", "Physics-based Modeling", "Abstract Syntax Tree", "AST"]
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[tool.poetry.dependencies]
# Urbanopt SDK requires Python 3.10 as of UOv0.9.0
# https://python-poetry.org/docs/dependency-specification/
python = ">=3.9, <3.14"
antlr4-python3-runtime = "4.13.2"
jinja2 = "~3.1.4"
pathspec = ">=0.11.2,<1.1.0"
certifi = ">=2024.8.30,<2027.0.0"
[tool.poetry.group.dev.dependencies]
autopep8 = "~2.3"
coveralls = ">=3.3,<4.1"
mypy = ">=1.18,<1.20"
pre-commit = "~4.3"
pytest = "~8.4"
pytest-cov = ">=5.0,<7.2"
pytest-benchmark = "~5.2.3"
# don't update sphinx right now
sphinx = "~7.4"
sphinx_rtd_theme = ">=3.0,<3.2"
sphinx-jsonschema = "~1.19"
syrupy = "~4.9"
toml = "~0.10"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
[tool.isort]
multi_line_output = 3