From 130c0c6cea837d2ed42cca569d736748f2e06249 Mon Sep 17 00:00:00 2001 From: Jensun Ravichandran Date: Mon, 10 May 2021 15:50:06 +0200 Subject: [PATCH] [BUGFIX] Fix typo in setup.py --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 31438d6..57f8573 100644 --- a/setup.py +++ b/setup.py @@ -20,15 +20,16 @@ with open("README.md", "r") as fh: long_description = fh.read() INSTALL_REQUIRES = ["prototorch", "pytorch_lightning", "torchmetrics"] +DEV = ["bumpversion"] EXAMPLES = ["matplotlib", "scikit-learn"] TESTS = ["codecov", "pytest"] -ALL = EXAMPLES + TESTS +ALL = DEV + EXAMPLES + TESTS setup( name=safe_name("prototorch_" + PLUGIN_NAME), version="0.0.0", - descripion= - "Pre-packaged prototype-based machine learning models using ProtoTorch and PyTorch-Lightning.", + description="Pre-packaged prototype-based " + "machine learning models using ProtoTorch and PyTorch-Lightning.", long_description=long_description, author="Alexander Engelsberger", author_email="engelsbe@hs-mittweida.de", @@ -37,6 +38,7 @@ setup( license="MIT", install_requires=INSTALL_REQUIRES, extras_require={ + "dev": DEV, "examples": EXAMPLES, "tests": TESTS, "all": ALL,