From 2e082a4ec0868e03df1b902562810873421823e5 Mon Sep 17 00:00:00 2001
From: Nuwan Goonasekera <2070605+nuwang@users.noreply.github.com>
Date: Mon, 7 Mar 2022 17:10:50 +0530
Subject: [PATCH] Update links to point to new repo location
---
LICENSE | 2 +-
README.md | 8 ++++----
docs/samples/job_conf.yml | 2 +-
setup.py | 6 +++---
tests/fixtures/job_conf.yml | 2 +-
tests/test_mapper_merge_multiple.py | 2 +-
6 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/LICENSE b/LICENSE
index 6eec0a2..cdd6c6d 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2021 usegalaxy-au
+Copyright (c) 2021 Galaxy Project
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index 766e85e..97927cb 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-[![Tests](https://github.com/usegalaxy-au/total-perspective-vortex/actions/workflows/tests.yaml/badge.svg)](https://github.com/usegalaxy-au/total-perspective-vortex/actions/workflows/tests.yaml)
-[![Coverage Status](https://coveralls.io/repos/github/usegalaxy-au/total-perspective-vortex/badge.svg?branch=main)](https://coveralls.io/github/usegalaxy-au/total-perspective-vortex?branch=main)
+[![Tests](https://github.com/galaxyproject/total-perspective-vortex/actions/workflows/tests.yaml/badge.svg)](https://github.com/galaxyproject/total-perspective-vortex/actions/workflows/tests.yaml)
+[![Coverage Status](https://coveralls.io/repos/github/galaxyproject/total-perspective-vortex/badge.svg?branch=main)](https://coveralls.io/github/galaxyproject/total-perspective-vortex?branch=main)
[![Documentation Status](https://readthedocs.org/projects/total-perspective-vortex/badge/?version=latest)](http://total-perspective-vortex.readthedocs.org/en/latest/?badge=latest)
-##
+##
TotalPerspectiveVortex (Vortex) provides an installable set of dynamic rules for the
[Galaxy application](https://galaxyproject.org/) that can route entities (Tools, Users, Roles) to appropriate
@@ -11,7 +11,7 @@ job destinations based on a configurable yaml file.
### Installing latest development version
```python
-pip install https://github.com/usegalaxy-au/total-perspective-vortex
+pip install total-perspective-vortex
```
### Documentation
diff --git a/docs/samples/job_conf.yml b/docs/samples/job_conf.yml
index aa9b0e3..c4b9e48 100644
--- a/docs/samples/job_conf.yml
+++ b/docs/samples/job_conf.yml
@@ -20,7 +20,7 @@ execution:
function: map_tool_to_destination
rules_module: vortex.rules
vortex_config_files:
- - https://github.com/usegalaxy-au/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
+ - https://github.com/galaxyproject/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
- config/vortex_rules_local.yml
local:
runner: local
diff --git a/setup.py b/setup.py
index 03f3e7e..c353571 100644
--- a/setup.py
+++ b/setup.py
@@ -35,14 +35,14 @@
setuptools.setup(
name="total-perspective-vortex",
- description="A library for routing entities to destinations in Galaxy",
+ description="A library for routing entities (jobs, users or groups) to destinations in Galaxy",
version=version,
author="Galaxy and GVL projects",
author_email="help@genome.edu.au",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
- url="https://github.com/usegalaxy-au/total-perspective-vortex",
+ url="https://github.com/galaxyproject/total-perspective-vortex",
packages=setuptools.find_packages(),
install_requires=REQS_FULL,
extras_require={
@@ -55,7 +55,7 @@
]
},
classifiers=[
- "Development Status :: 3 - Alpha",
+ "Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
diff --git a/tests/fixtures/job_conf.yml b/tests/fixtures/job_conf.yml
index e7d5157..48ace1f 100644
--- a/tests/fixtures/job_conf.yml
+++ b/tests/fixtures/job_conf.yml
@@ -28,5 +28,5 @@ execution:
function: map_tool_to_destination
rules_module: vortex.rules
vortex_config_files:
- - https://github.com/usegalaxy-au/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
+ - https://github.com/galaxyproject/total-perspective-vortex/raw/main/vortex/tests/fixtures/mapping-rules.yml
- config/vortex_rules_local.yml
diff --git a/tests/test_mapper_merge_multiple.py b/tests/test_mapper_merge_multiple.py
index a5eb45c..53f8705 100644
--- a/tests/test_mapper_merge_multiple.py
+++ b/tests/test_mapper_merge_multiple.py
@@ -20,7 +20,7 @@ def test_merge_remote_and_local(self):
tool = mock_galaxy.Tool('bwa')
user = mock_galaxy.User('ford', 'prefect@vortex.org')
- config_first = "https://github.com/usegalaxy-au/total-perspective-vortex/raw/main/" \
+ config_first = "https://github.com/galaxyproject/total-perspective-vortex/raw/main/" \
"tests/fixtures/mapping-merge-multiple-remote.yml"
config_second = os.path.join(os.path.dirname(__file__), 'fixtures/mapping-merge-multiple-local.yml')