-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.63 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
[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-parametric"
version = "0.11.dev0"
description = "A python wrapper for Ansys Fluent parametric workflows"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
maintainers = ["PyAnsys developers <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/ansys/pyfluent-parametric"
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"
ansys-fluent-core = "~=0.27.dev1"
[tool.poetry.urls]
"Documentation" = "https://parametric.fluent.docs.pyansys.com/"
"Source" = "https://github.com/ansys/pyfluent-parametric"
"Tracker" = "https://github.com/ansys/pyfluent-parametric/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
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = """
-v
--cov=ansys.fluent
--cov-report html:cov_html
--cov-config=.coveragerc
--durations=0
--show-capture=all
"""
markers = [
"fluent_version(version): Run tests based on Fluent version specification",
"self_hosted: Tests that will run on self-hosted machines"
]