-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (46 loc) · 1.45 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
# Check https://python-poetry.org/docs/pyproject/ for all available sections
name = "ansys-fluent-visualization"
version = "0.16.dev0"
description = "A python wrapper for ansys Fluent visualization"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
maintainers = ["PyAnsys developers <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/ansys/pyfluent-visualization"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [
{ include = "ansys", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
importlib-metadata = {version = "^4.0", python = "<3.9"}
ansys-fluent-core = "~=0.28.dev0"
pyvista = "~=0.44.1"
pyvistaqt = "~=0.11.1"
pyside6 = "~=6.8.1"
matplotlib = ">=3.9.0"
[tool.poetry.urls]
"Documentation" = "https://visualization.fluent.docs.pyansys.com/"
"Source" = "https://github.com/ansys/pyfluent-visualization"
"Tracker" = "https://github.com/ansys/pyfluent-visualization/issues"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 88
default_section = "THIRDPARTY"
src_paths = ["doc", "src", "tests"]
[tool.coverage.run]
source = ["ansys.fluent"]
[tool.coverage.report]
show_missing = true