-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
122 lines (112 loc) · 3.69 KB
/
pyproject.toml
File metadata and controls
122 lines (112 loc) · 3.69 KB
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
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11", "setuptools_scm[toml]>=8.0"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
build-dir = ".skbuild/{wheel_tag}"
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
logging.level = "INFO"
wheel.exclude = ["PyMieSim/cpp"]
install.strip = false
sdist.include = ["PyMieSim/binary/*"]
sdist.exclude = [
"tests",
"docs",
".git*",
"developments",
]
[tool.setuptools_scm]
write_to = "PyMieSim/_version.py"
version_scheme = "only-version"
local_scheme = "no-local-version"
[project]
name = "PyMieSim"
dynamic = ["version"]
description = "A package for light scattering (Mie) computation."
license = { file = "LICENSE" }
readme = "README.rst"
urls = {"Documentation" = "https://martinpdes.github.io/PyMieSim/", "Repository" = "https://github.com/MartinPdeS/PyMieSim"}
requires-python = ">=3.10"
authors = [
{ name = "Martin Poinsinet de Sivry-Houle", email = "martin.poinsinet.de.sivry@gmail.com" }
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Jupyter",
"Framework :: Sphinx"
]
dependencies = [
"TypedUnit",
"MPSPlots",
"PyOptik",
"setuptools_scm[toml] >=8,<11",
"numpy ==2.2.6",
"matplotlib ==3.10.8",
"pydantic >=2.9.2,<2.13.0",
"pandas ~=2.3.0",
"tabulate ~=0.9",
"pyvista ==0.47.0",
]
keywords = [
"mie",
"scattering",
"backscatter",
"sphere",
"cylinder",
"nanoparticle",
"phase function",
"efficiency",
"rayleigh",
"backscattering"
]
[project.optional-dependencies]
testing = [
"pytest>=0.6",
"pytest-cov>=2.0",
"pytest-json-report==1.5.0",
"coverage==7.13.5",
]
documentation = [
"numpydoc==1.10.0",
"sphinx>=5.1.1",
"sphinx-rtd-theme==3.1.0",
"sphinx-gallery==0.20.0",
"sphinx_design==0.6.1",
"pydata-sphinx-theme==0.16.1"
]
dev = [
"flake8==7.3.0"
]
[tool.cibuildwheel]
build-frontend = "build"
test-extras = ["testing"]
[tool.cibuildwheel.linux]
archs = ["x86_64"]
build = ["cp311-manylinux*", "cp312-manylinux*", "cp313-manylinux*"]
manylinux-x86_64-image = "manylinux2014"
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
test-command = "python -m pytest {project}/tests --config-file={project}/pytest.ini --ignore={project}/tests/extra/test_system_plot.py --ignore={project}/tests/single/representation.py"
# test-command = "cd {project}; python -m pytest --config-file=pytest.ini --ignore=tests/extra/test_system_plot.py --ignore=tests/single/representation.py"
[tool.cibuildwheel.macos]
archs = ["arm64"]
build = ["cp311-*", "cp312-*", "cp313-*"]
repair-wheel-command = "delocate-wheel -w {dest_dir} -v {wheel}" # --exclude=libomp.dylib
test-command = 'python -m pytest {project}/tests --config-file={project}/pytest.ini' # DYLD_PRINT_LIBRARIES=NO
[tool.cibuildwheel.windows]
archs = ["AMD64"]
build = ["cp311-*", "cp312-*", "cp313-*"]
test-command = 'python -m pytest {project}/tests --config-file={project}/pytest.ini'