Skip to content

Commit

Permalink
Bump version: 0.1.36 → 0.1.37
Browse files Browse the repository at this point in the history
  • Loading branch information
jcreinhold committed Dec 16, 2021
1 parent 69b715e commit e3031e1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.36
current_version = 0.1.37
commit = True
tag = True

Expand All @@ -12,7 +12,7 @@ universal = 1

[flake8]
exclude = docs
per-file-ignores =
per-file-ignores =
__init__.py: F401
max-line-length = 88
extend-ignore = E203
Expand All @@ -35,10 +35,10 @@ keywords = tiramisu, segmentation, neural network, convolutional, pytorch
license = Apache Software License 2.0
license_file = LICENSE
url = https://github.com/jcreinhold/tiramisu-brulee
project_urls =
project_urls =
Bug Tracker = https://github.com/jcreinhold/tiramisu-brulee/issues
Documentation = https://tiramisu-brulee.readthedocs.io/
classifiers =
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Expand All @@ -50,19 +50,19 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Typing :: Typed
Typing :: Typed

[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3.6
install_requires =
install_requires =
torch
setup_requires =
setup_requires =
pytest-runner
test_suite = tests
tests_require =
tests_require =
jsonargparse~=3.19.4
numpy
pandas
Expand All @@ -77,18 +77,18 @@ tests_require =
torchmetrics

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

[options.package_data]
tiramisu_brulee = py.typed

[options.extras_require]
lesionseg =
lesionseg =
jsonargparse~=3.12.0
numpy
pandas
Expand All @@ -103,7 +103,7 @@ lesionseg =
mlflow = mlflow

[options.entry_points]
console_scripts =
console_scripts =
lesion-train = tiramisu_brulee.experiment.cli.train:train
lesion-predict = tiramisu_brulee.experiment.cli.predict:predict
lesion-predict-image = tiramisu_brulee.experiment.cli.predict:predict_image
2 changes: 1 addition & 1 deletion tiramisu_brulee/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

__author__ = """Jacob Reinhold"""
__email__ = "[email protected]"
__version__ = "0.1.36"
__version__ = "0.1.37"

logging.getLogger(__name__).addHandler(logging.NullHandler())

0 comments on commit e3031e1

Please sign in to comment.