-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.cfg
58 lines (52 loc) · 1.19 KB
/
setup.cfg
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
[metadata]
description = ISO 11146 Calculation of Laser Beam Center, Diameter, and M²
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Physics
keywords =
variance
gaussian
M-squared
d4sigma
M2
M²
spotsize
laser beam
IS011146
divergence
beam waist
TEM00
beam diameter
beam parameter product
BPP
[options]
packages = laserbeamsize
install_requires =
numpy
matplotlib
scipy
imageio
python_requires = >=3.7
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
[flake8]
ignore = W503, D212, D405, D411, N802, N803, N806
per-file-ignores =
__init__.py:F401,F403
setup.py:D100
exclude =
.git,
.eggs,
__pycache__,
docs
max-line-length = 120
docstring-convention = google