generated from ansys/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.54 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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ansys-seascape"
version = "0.3.dev0"
description = "A pythonic remotable interface to RedHawkSC and TotemSC"
readme = "README.rst"
requires-python = ">=3.9,<4"
license = {file = "LICENSE"}
authors = [{name = "ANSYS, Inc.", email = "[email protected]"}]
maintainers = [{name = "Abhishek Kale", 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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"requests>=2.23",
]
[project.optional-dependencies]
tests = [
"pytest==8.3.4",
"pytest-cov==6.0.0",
]
doc = [
"ansys-sphinx-theme==1.2.6",
"numpydoc==1.8.0",
"Sphinx==8.1.3",
"sphinx-copybutton==0.5.2",
]
[project.urls]
Source = "https://github.com/ansys/pyseascape"
Documentation = "https://seascape.docs.pyansys.com"
[tool.flit.module]
name = "ansys.seascape"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 100
src_paths = ["doc", "src", "tests"]
[tool.coverage.run]
source = ["ansys.seascape"]
[tool.coverage.report]
show_missing = true