From 28a526044b35c9907c34d3f6bed0a7e4c89e7e91 Mon Sep 17 00:00:00 2001
From: Rodrigo Tobar <rtobar@icrar.org>
Date: Thu, 1 Apr 2021 16:15:00 +0800
Subject: [PATCH] Expand and alpha-sort list of dependencies

The list of dependencies consisted on a single line, but it is easier to
maintain these lists if there is a dependency per line, and when they
are alpha-sorted, which is what this commit does.

This work was performed as part of YAN-685.

Signed-off-by: Rodrigo Tobar <rtobar@icrar.org>
---
 setup.py | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index 30cc936e..ac43af8f 100644
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,13 @@ setuptools.setup(
     ],
     platforms=["OS Independent"],
     setup_requires=[] + pytest_runner,
-    install_requires=["debugpy", "numpy", "pytango", "transitions", "ska_ser_logging"],
+    install_requires=[
+        "debugpy",
+        "numpy",
+        "pytango",
+        "ska_ser_logging",
+        "transitions",
+    ],
     tests_require=["pytest", "coverage", "pytest-json-report", "pytest-forked"],
     entry_points={
         "console_scripts": [
-- 
GitLab