forked from kaanaksit/odak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
43 lines (38 loc) · 811 Bytes
/
Copy pathsetup.cfg
File metadata and controls
43 lines (38 loc) · 811 Bytes
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
[metadata]
name = odak
version = 0.2.8
description = Odak, the fundamental Python library for scientific computing in optical sciences.
author = Kaan Aksit
author_email = kaanaksit@kaanaksit.com
license = MPL-2.0
license_expression = MPL-2.0
url = https://github.com/kaanaksit/odak
[options]
packages = find:
package_dir =
=odak
install_requires = file: requirements.txt
python_requires = >=3.9
[tool:pytest]
testpaths = test
python_files = test_*.py
addopts = -v --tb=short
[mypy]
python_version = 3.9
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
[mypy-odak.*]
follow_imports = skip
[flake8]
max-line-length = 127
max-complexity = 10
count = True
show-source = True
statistics = True
exclude =
.git,
__pycache__,
build,
dist
select = E9,F63,F7,F82