-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
41 lines (36 loc) · 819 Bytes
/
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
[metadata]
name = sitk-cli
version = 0.7.0.post1
requires-python = ">=3.8"
url = https://github.com/dyollb/sitk-cli
description = Wrap SimpleITK functions as command lines
long_description = file: README.md
license = MIT License
project_urls =
Bug Tracker=https://github.com/dyollb/sitk-cli/issues
Source Code=https://github.com/dyollb/sitk-cli
[options]
package_dir=
=src
packages=find:
install_requires =
makefun
SimpleITK
typer
[options.packages.find]
where=src
[options.extras_require]
dev =
mypy
pytest
[mypy]
disallow_untyped_defs = false
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_return_any = true
strict_equality = true
show_column_numbers = true
show_error_codes = true
[mypy-setuptools,SimpleITK]
ignore_missing_imports = true