-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
80 lines (71 loc) · 1.75 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[metadata]
name = pymedio
version = attr: pymedio.__version__
description = read arbitrary medical images in python
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/jcreinhold/pymedio
author = Jacob Reinhold
author_email = [email protected]
license = MIT license
license_file = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Typing :: Typed
keywords = pymedio
project_urls =
Bug Tracker = https://github.com/jcreinhold/pymedio/issues
Documentation = https://pymedio.readthedocs.io/
[options]
packages = find:
install_requires =
numpy>=1.22
python_requires = >=3.9
include_package_data = True
test_suite = tests
zip_safe = False
[options.packages.find]
exclude =
tests
docs
include =
pymedio
pymedio.*
[options.extras_require]
all =
SimpleITK>=2.1.0
cryptography>=36.0
nibabel>=3
pydicom>=2
cryptography =
cryptography>=36.0
dicom =
pydicom>=2
[options.package_data]
pymedio = py.typed
[bumpversion]
current_version = 0.2.14
commit = True
tag = True
[bumpversion:file:pymedio/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[flake8]
exclude = docs
per-file-ignores =
__init__.py: F401
max-line-length = 88
extend-ignore = E203
[aliases]
test = pytest
[tool:pytest]
addopts = --doctest-modules --ignore=setup.py --ignore=docs
doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL NUMBER
filterwarnings =
ignore::RuntimeWarning