Skip to content
Snippets Groups Projects
Unverified Commit 28a52604 authored by Rodrigo Tobar's avatar Rodrigo Tobar
Browse files

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: default avatarRodrigo Tobar <rtobar@icrar.org>
parent eda92789
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,13 @@ setuptools.setup( ...@@ -35,7 +35,13 @@ setuptools.setup(
], ],
platforms=["OS Independent"], platforms=["OS Independent"],
setup_requires=[] + pytest_runner, 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"], tests_require=["pytest", "coverage", "pytest-json-report", "pytest-forked"],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment