forked from scottprahl/iadpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
53 lines (45 loc) · 1.14 KB
/
setup.cfg
File metadata and controls
53 lines (45 loc) · 1.14 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
[metadata]
description='Forward and inverse radiative transport using adding-doubling'
keywords=
absorption
scattering
reflection
transmission
optical properties
radiative transport
optical properties
scattering coefficient
scattering anisotropy
classifiers=
Development Status :: 3 - Alpha
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
include_package_data = True
package_data = {'' : ['data/*.csv']}
[options]
packages = iadpython
install_requires =
numpy
python_requires = >=3.7
zip_safe = True
[tool:pytest]
norecursedirs = tests_iadc
[flake8]
ignore = W503, D212, D301, N802, N803, N806
per-file-ignores =
__init__.py:F401,F403
setup.py:D100
exclude =
.git,
__pycache__,
docs,
iadpython/.ipynb_checkpoints
max-line-length = 99
docstring-convention = google