-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
79 lines (69 loc) · 1.94 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
[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 = "ansys-edb-core"
version = "0.2.dev0"
description = "A python wrapper for Ansys Edb service"
readme = "README.rst"
requires-python = ">=3.8"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
# FIXME: add ansys-api-edb version
dependencies = [
"ansys-api-edb==1.0.10",
"protobuf>=3.19.3,<5",
"grpcio>=1.44.0"
]
[project.urls]
Documentation = "https://edb.core.docs.pyansys.com"
Source = "https://github.com/ansys/pyedb-core"
Homepage = "https://github.com/ansys/pyedb-core"
Tracker = "https://github.com/ansys/pyedb-core/issues"
# FIXME: add versions
[project.optional-dependencies]
notebook = [
"notebook",
"matplotlib",
"ipynbname"
]
# FIXME: update to newer versions
tests = [
"pytest==7.4.3",
"pytest-cov==4.1.0",
"pytest-mock==3.11.1",
"tox",
]
# FIXME: update to newer versions
doc = [
"sphinx==7.2.6",
"numpydoc==1.6.0",
"ansys_sphinx_theme>=0.12.2",
"sphinx-copybutton==0.5.2",
]
[tool.flit.module]
name = "ansys.edb.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.edb"]
[tool.coverage.report]
show_missing = true