forked from scottprahl/miepython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
54 lines (50 loc) · 1.14 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
[metadata]
description = Mie scattering of a plane wave by a sphere
keywords =
mie
scattering
rainbow
droplet
backscatter
sphere
nanoparticle
sphere
cloud
phase function
efficiency
rayleigh
backscattering
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Intended Audience :: Science/Research
Programming Language :: Python
Topic :: Scientific/Engineering :: Physics
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
packages = miepython
install_requires =
numpy
matplotlib
numba
[options.package_data]
miepython =
data/*.txt
[flake8]
ignore = W503, D212, N802, N803, N806, E501
per-file-ignores =
__init__.py:F401,F403
setup.py:D100
tests/test_jit.py:D100,D101,D102
tests/test_nojit.py:D100,D101,D102
tests/conftest.py:D100,D101,D102,D103
exclude =
.git,
__pycache__,
docs
max-line-length = 99
docstring-convention = google