generated from ansys/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
78 lines (70 loc) · 1.84 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name="ansys-motorcad-core"
version = "0.8.dev0"
description = "Pythonic interface to Ansys Motor-CAD."
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "ANSYS, Inc.", email = "[email protected]"},
]
maintainers = [
{name = "ANSYS, Inc.", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"psutil >= 5.9.0",
"requests >= 2.27.1",
"packaging >= 21.3",
"importlib-metadata>=4.0",
]
[project.optional-dependencies]
tests = [
"pytest==8.3.4",
"pytest-cov==6.0.0",
"ansys.platform.instancemanagement>=1.0.2",
"matplotlib>=3.6.3"
]
doc = [
"Sphinx==8.1.3",
"numpydoc==1.8.0",
"ansys-sphinx-theme==1.2.3",
"sphinx-copybutton==0.5.2",
"sphinx-gallery==0.18.0",
"matplotlib",
"scipy",
"pypandoc==1.14",
"bezier>=2023.7.28",
"networkx"
]
[project.urls]
Source = "https://github.com/ansys/pymotorcad"
Documentation = "https://motorcad.docs.pyansys.com/"
Tracker = "https://github.com/ansys/pymotorcad/issues"
[tool.flit.module]
name = "ansys.motorcad.core"
[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.motorcad"]
[tool.coverage.report]
show_missing = true