-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
85 lines (72 loc) · 2.05 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pytwin"
version = "0.8.dev0"
description = "A python wrapper for Ansys Digital Twin components"
license = "MIT"
authors = ["ANSYS, Inc. <pyansys.core@ansys.com>"]
maintainers = ["ANSYS, Inc. <pyansys.core@ansys.com>"]
readme = "README.rst"
repository = "https://github.com/ansys/pytwin"
documentation = "https://twin.docs.pyansys.com/"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "pytwin", from = "src/ansys" },
]
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = ">=1.17"
pandas = ">=1.3.2"
pyvista = ">=0.38.6"
tqdm = ">=4.45.0"
pywin32 = { version = ">=304", markers = "platform_system == 'Windows'" }
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.tests.dependencies]
pytest = ">=7.3.1"
pytest-cov = ">=4.0.0"
[tool.poetry.group.doc]
optional = true
[tool.poetry.group.doc.dependencies]
ansys-fluent-core = "^0.26.0"
ansys-dpf-core = "^0.13.0"
ansys-fluent-visualization = "^0.14"
ansys-mapdl-core = "^0.68.5"
ansys-sphinx-theme = "^1.1.2"
jupyter_sphinx = "^0.5.3"
matplotlib = "^3.7.1"
numpydoc = ">=1.6.0"
Sphinx = ">=7.0.1,<9.0.0"
sphinx-autodoc-typehints = ">=1.25.2,<3.0.0"
sphinx-copybutton = "^0.5.0"
sphinx-gallery = ">=0.17,<0.19"
sphinx-notfound-page = "^1.0.0"
sphinxemoji = ">=0.2,<0.4"
pyaedt = {git = "https://github.com/ansys/pyaedt", rev = "main"} # use main branch while the latest development are not released
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 120
default_section = "THIRDPARTY"
src_paths = ["doc", "src", "tests"]
[tool.codespell]
ignore-words = "doc/styles/config/vocabularies/ANSYS/accept.txt"
[tool.coverage.run]
source = ["ansys.pytwin"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
minversion = "7.1"
addopts = "-ra"
testpaths = [
"tests",
]