forked from ansys/pyansys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
120 lines (113 loc) · 3.7 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
name = "pyansys"
version = "2025.1.dev0"
description = "Pythonic interfaces to Ansys products"
readme = "README.rst"
requires-python = ">=3.10,<4"
license = { file = "LICENSE" }
authors = [{ name = "ANSYS, Inc.", email = "[email protected]" }]
maintainers = [{ name = "PyAnsys developers", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"ansys-acp-core==0.1b2",
"ansys-additive-core==0.18.1",
"ansys-additive-widgets==0.2.1",
"ansys-conceptev-core==0.5",
"ansys-dpf-composites==0.6.1",
"ansys-dpf-core==0.13.2",
"ansys-dpf-post==0.9.0",
"ansys-dyna-core==0.5.0",
"ansys-dynamicreporting-core==0.8.0",
"ansys-edb-core==0.1.9",
"ansys-fluent-core==0.26.1",
"ansys-geometry-core==0.7.5",
"ansys-hps-client==0.9.0",
"ansys-mapdl-core==0.68.6",
"ansys-math-core==0.2.0",
"ansys-mechanical-core==0.11.9",
"ansys-meshing-prime==0.6.2",
"ansys-modelcenter-workflow==0.1.1",
"ansys-motorcad-core==0.6.1",
"ansys-optislang-core==0.9.0",
"ansys-platform-instancemanagement==1.1.2",
"ansys-pyensight-core==0.9.0",
"ansys-rocky-core==0.2.0",
"ansys-seascape==0.2.0",
"ansys-sherlock-core==0.7.1",
"ansys-simai-core==0.2.5",
"ansys-sound-core==0.1.3",
"ansys-systemcoupling-core==0.8.0",
"ansys-turbogrid-core==0.4.1",
"ansys-workbench-core==0.7.0",
"pyaedt==0.11.2",
"pyedb==0.31.0",
"pygranta==2024.2.0",
"pytwin==0.7.0",
]
[project.optional-dependencies]
mapdl-all = ["ansys-mapdl-reader==0.54.1"]
fluent-all = ["ansys-fluent-visualization==0.14.0"]
tools = [
"ansys-materials-manager==0.2.3",
"ansys-tools-filetransfer==0.1.0",
"ansys-tools-local-product-launcher==0.1.0",
"ansys-tools-path==0.6.0",
# "ansys-tools-protoc-helper==0.4.0; python_version<='3.10'",
"ansys-tools-visualization-interface==0.5.0",
"ansys-units==0.3.2",
"pyansys-tools-report==0.8.1",
"pyansys-tools-versioning==0.6.0",
"pyansys-tools-variableinterop==0.1.1",
]
all = [
# MAPDL - ALL
"ansys-mapdl-reader==0.54.1",
# FLUENT - ALL
"ansys-fluent-visualization==0.14.0",
# TOOLS
"ansys-materials-manager==0.2.3",
"ansys-tools-filetransfer==0.1.0",
"ansys-tools-local-product-launcher==0.1.0",
"ansys-tools-path==0.6.0",
# "ansys-tools-protoc-helper==0.4.0; python_version<='3.10'",
"ansys-tools-visualization-interface==0.5.0",
"ansys-units==0.3.2",
"pyansys-tools-report==0.8.1",
"pyansys-tools-versioning==0.6.0",
"pyansys-tools-variableinterop==0.1.1",
]
doc = [
"Sphinx==8.1.3",
"ansys-sphinx-theme==1.2.0",
"Jinja2 ==3.1.4",
"Pillow==11.0.0",
"PyGithub==2.5.0",
"sphinx-copybutton==0.5.2",
"sphinx-design==0.6.1",
"sphinxcontrib-mermaid==1.0.0",
]
[project.urls]
Source = "https://github.com/ansys/pyansys"
Documentation = "https://docs.pyansys.com"
[tool.flit.module]
name = "pyansys"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 100
src_paths = ["doc", "src"]