-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (65 loc) · 1.96 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
[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-materials-manager"
version = "0.2.dev1"
description = "Python package to unify material management across the ansys portfolio"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
maintainers = ["PyAnsys developers <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/ansys/pymaterials-manager"
documentation = "https://manager.materials.docs.pyansys.com"
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"
numpy = "^2.0"
# Documentation dependencies
ansys-sphinx-theme = {version = ">=0.12,<1.4", optional = true}
numpydoc = {version = "^1.6.0", optional = true}
Sphinx = {version = ">=7.2,<9.0", optional = true}
sphinx-autoapi = {version = "^3.0", optional = true}
sphinx-copybutton = {version = "==0.5.2", optional = true}
[tool.poetry.group.dev.dependencies]
pytest = ">=7.3,<9.0"
coolprop = "^6.4.1"
ansys-mapdl-core = ">=0.64.1,<0.69.0"
ansys-fluent-core = ">=0.12.5,<0.27.0"
twine = ">=4.0.2,<7.0.0"
pytest-cov = ">=4,<7"
pre-commit = ">=3.2.2,<5.0.0"
[tool.poetry.extras]
doc = [
"ansys-sphinx-theme",
"numpydoc",
"Sphinx",
"sphinx-autoapi",
"sphinx-copybutton",
]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 100
default_section = "THIRDPARTY"
src_paths = ["doc", "src", "tests"]
[tool.coverage.run]
source = ["ansys.materials"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
markers = [
"mapdl_integration: tests requiring a running instance of MAPDL",
]
addopts = "-m 'not mapdl_integration'"