-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
126 lines (113 loc) · 3.07 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11", "setuptools_scm[toml]>=8.0"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
logging.level = "INFO"
wheel.exclude = ["SuPyMode/cpp"]
install.strip = false
sdist.include = ["SuPyMode/binary/*"]
sdist.exclude = [
"tests",
"docs",
".git*",
"developments",
]
[tool.setuptools_scm]
write_to = "SuPyMode/_version.py"
version_scheme = "only-version"
local_scheme = "no-local-version"
[project]
name = "SuPyMode"
dynamic = ["version"]
description = "A package for light propagation in fiber optics."
license = {file = "LICENSE"}
documentation = 'https://supymode.readthedocs.io/'
platforms = ['unix', 'linux', 'osx']
readme = "README.rst"
url = 'https://github.com/MartinPdeS/SuPyMode'
requires-python = ">=3.11"
authors = [{ name="Martin Poinsinet de Sivry-Houle", email="[email protected]"}]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
]
keywords = [
"coupled-mode theory",
"waveguide",
]
dependencies = [
"setuptools_scm[toml]>=8.0",
"numpy>=1,<3",
"scipy~=1.14.0",
"MPSPlots",
"pydantic==2.10.3",
"PyFinitDiff",
"FiberFusing",
"PyFiberModes",
"pathvalidate==3.2.1",
]
[project.optional-dependencies]
testing = [
"pytest>=0.6",
"pytest-cov>=2.0",
"pytest-json-report ==1.5.0",
"coverage==7.6.9"
]
documentation = [
"PyFiberModes",
"numpydoc ==1.8.0",
"sphinx >=5.1.1",
"sphinx-gallery ==0.18.0",
"sphinx-rtd-theme ==3.0.2",
"pydata-sphinx-theme ==0.16.0",
]
dev = [
"flake8 ==7.1.1",
]
[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict = true
log_cli_level = "INFO"
addopts = [
"-v", "-rA", "-rw", "--cov=SuPyMode", "--cov-report=html", "--cov-report=term"
]
testpaths = [
"tests/*",
]
[tool.cibuildwheel]
build-frontend = "build"
before-test = ""
test-command = "python -m pytest -rA {project}/tests"
test-extras = ["testing"]
[tool.cibuildwheel.linux]
archs = ["x86_64"]
build = ["cp310-manylinux*", "cp311-manylinux*", "cp312-manylinux*"]
manylinux-x86_64-image = "manylinux2014"
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
[tool.cibuildwheel.macos]
archs = ["arm64"]
build = ["cp310-*", "cp311-*", "cp312-*"]
repair-wheel-command = "delocate-wheel -w {dest_dir} -v {wheel}"
[tool.cibuildwheel.windows]
archs = ["AMD64"]
build = ["cp310-*", "cp311-*", "cp312-*"]
[tool.coverage.run]
source = ['SuPyMode']
omit = [
'*\__init__.py',
'SuPyMode/_version.py',
'SuPyMode/directories.py',
'SuPyMode/tools/special.py',
'SuPyMode/tools/utils.py',
'SuPyMode/special.py'
]
branch = true
relative_files = true