diff --git a/setup.cfg b/setup.cfg index ddd325d..b2ec582 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.25 +current_version = 0.1.26 commit = True tag = True @@ -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 @@ -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 @@ -54,12 +54,12 @@ 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 numpy pandas @@ -74,15 +74,15 @@ tests_require = torchmetrics [options.packages.find] -include = +include = tiramisu_brulee tiramisu_brulee.* -exclude = +exclude = tests docs [options.extras_require] -lesionseg = +lesionseg = jsonargparse numpy pandas @@ -97,7 +97,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 diff --git a/tiramisu_brulee/__init__.py b/tiramisu_brulee/__init__.py index fed0e67..1ced760 100644 --- a/tiramisu_brulee/__init__.py +++ b/tiramisu_brulee/__init__.py @@ -2,4 +2,4 @@ __author__ = """Jacob Reinhold""" __email__ = "jcreinhold@gmail.com" -__version__ = "0.1.25" +__version__ = "0.1.26"