-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.84 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "modelica-builder"
version = "0.6.0"
description = "Modelica builder enables programmatic parsing and modification of Modelica files."
authors = ["Nicholas Long <[email protected]>", "Nathan Moore <[email protected]>"]
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"
certifi = "^2024.8.30"
[tool.poetry.dev-dependencies]
autopep8 = "~2.0"
coveralls = "~3.3"
mypy = "~1.5"
pre-commit = "~3.4"
pytest = "~7.4"
pytest-cov = "~4.1"
pytest-benchmark = "~4.0.0"
# don't update sphinx right now
sphinx = "~7.2"
sphinx_rtd_theme = "~1.3"
sphinx-jsonschema = "~1.19"
syrupy = "~4.5"
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