Skip to content

Commit

Permalink
Bump version: 0.1.10 → 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jcreinhold committed Jan 13, 2022
1 parent e70485c commit 2b8947f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion lesion_metrics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__url__ = "https://github.com/jcreinhold/lesion-metrics"
__author__ = """Jacob Reinhold"""
__email__ = "jcreinhold@gmail.com"
__version__ = "0.1.10"
__version__ = "0.1.11"
__license__ = "Apache-2.0"
__copyright__ = "Copyright 2021 Jacob Reinhold"

Expand Down
34 changes: 17 additions & 17 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.10
current_version = 0.1.11
commit = True
tag = True

Expand All @@ -9,7 +9,7 @@ replace = __version__ = "{new_version}"

[flake8]
exclude = docs
per-file-ignores =
per-file-ignores =
__init__.py: F401
max-line-length = 88
extend-ignore = E203
Expand All @@ -33,53 +33,53 @@ keywords = lesion, metrics, segmentation, mri, ct, pet
license = Apache Software License 2.0
license_file = LICENSE
url = https://github.com/jcreinhold/lesion-metrics
project_urls =
project_urls =
Bug Tracker = https://github.com/jcreinhold/lesion-metrics/issues
Documentation = https://lesion-metrics.readthedocs.io/
classifiers =
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Typing :: Typed
Programming Language :: Python :: Implementation :: CPython
Typing :: Typed

[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3.8
install_requires =
pillow>=9.0.0
install_requires =
pillow>=9.0.0
scikit-image>=0.18,<1
scipy>=1.6,<2
test_suite = tests

[options.packages.find]
include =
include =
lesion_metrics
lesion_metrics.*
exclude =
exclude =
tests
docs

[options.package_data]
lesion_metrics = py.typed

[options.extras_require]
cli =
cli =
numpy>=1.21,<2.0
nibabel>=3,<4
nibabel>=3,<4
pandas>=1.3.5,<2
pydicom>=2,<3
pymedio>=0.1.8,<1
SimpleITK>=2.1.0,<3
pydicom>=2,<3
pymedio>=0.1.8,<1
SimpleITK>=2.1.0,<3

[options.entry_points]
console_scripts =
console_scripts =
lesion-metrics=lesion_metrics.cli.aggregate:main
per-lesion-metrics=lesion_metrics.cli.per_lesion:main

0 comments on commit 2b8947f

Please sign in to comment.