diff --git a/setup.py b/setup.py index ebb6659..f99357b 100644 --- a/setup.py +++ b/setup.py @@ -3,9 +3,9 @@ from os import walk, path BASEDIR = path.abspath(path.dirname(__file__)) -URL = "https://github.com/mikejgray/skill-randomness" +URL = "https://github.com/openvoiceos/skill-ovos-randomness" SKILL_CLAZZ = "RandomnessSkill" # needs to match __init__.py class name -PYPI_NAME = "skill-randomness" # pip install PYPI_NAME +PYPI_NAME = "ovos-skill-randomness" # pip install PYPI_NAME # below derived from github url to ensure standard skill_id SKILL_AUTHOR, SKILL_NAME = URL.split(".com/")[-1].split("/") @@ -68,8 +68,8 @@ def find_resource_files(): long_description=long_description, long_description_content_type="text/markdown", url=URL, - author="Mike Gray", - author_email="mike@graywind.org", + author="OpenVoiceOS", + author_email="mike@oscillatelabs.net", license="MIT", package_dir={SKILL_PKG: "skill_randomness"}, package_data={SKILL_PKG: find_resource_files()}, diff --git a/test/test_skill.py b/test/test_skill.py index c3cfb34..db1cafa 100644 --- a/test/test_skill.py +++ b/test/test_skill.py @@ -12,7 +12,7 @@ @pytest.fixture(scope="session") -def test_skill(test_skill_id="skill-randomness.mikejgray", bus=FakeBus()): +def test_skill(test_skill_id="skill-ovos-randomness.openvoiceos", bus=FakeBus()): # Get test skill bus.emitter = bus.ee bus.run_forever() @@ -55,7 +55,7 @@ def test_nada(self, test_skill): assert True def test_skill_is_a_valid_plugin(): - assert "skill-randomness.mikejgray" in find_skill_plugins() + assert "skill-ovos-randomness.openvoiceos" in find_skill_plugins() if __name__ == "__main__": pytest.main()