提交 2056d80e 编写于 作者: C Cleber Rosa

Optional plugins: adjust package names

So users will now be able to find Avocado plugins on PyPI, and install
them via `pip`.  Let's try to be consistent with the naming on those
packages, so that users don't fall into naming traps such as
installing Django related extensions.

Also, those packages map more closely to their (RPM) packaged versions.
Signed-off-by: NCleber Rosa <crosa@redhat.com>
上级 f3a19b0b
......@@ -21,7 +21,7 @@ root_path = os.path.abspath(os.path.join("..", ".."))
version_file = os.path.join(root_path, 'VERSION')
VERSION = open(version_file, 'r').read().strip()
setup(name='avocado_result_html',
setup(name='avocado-framework-plugin-result-html',
description='Avocado HTML Report for Jobs',
version=VERSION,
author='Avocado Developers',
......
......@@ -21,7 +21,7 @@ root_path = os.path.abspath(os.path.join("..", ".."))
version_file = os.path.join(root_path, 'VERSION')
VERSION = open(version_file, 'r').read().strip()
setup(name='avocado-robot',
setup(name='avocado-framework-plugin-robot',
description='Avocado Plugin for Execution of Robot Framework tests',
version=VERSION,
author='Avocado Developers',
......
......@@ -21,7 +21,7 @@ root_path = os.path.abspath(os.path.join("..", ".."))
version_file = os.path.join(root_path, 'VERSION')
VERSION = open(version_file, 'r').read().strip()
setup(name='avocado-runner-docker',
setup(name='avocado-framework-plugin-runner-docker',
description='Avocado Runner for Execution on Docker Containers',
version=VERSION,
author='Avocado Developers',
......@@ -29,7 +29,7 @@ setup(name='avocado-runner-docker',
url='http://avocado-framework.github.io/',
packages=find_packages(),
include_package_data=True,
install_requires=['avocado-runner-remote', 'aexpect'],
install_requires=['avocado-framework-plugin-runner-remote', 'aexpect'],
entry_points={
'avocado.plugins.cli': [
'docker = avocado_runner_docker:DockerCLI',
......
......@@ -21,7 +21,7 @@ root_path = os.path.abspath(os.path.join("..", ".."))
version_file = os.path.join(root_path, 'VERSION')
VERSION = open(version_file, 'r').read().strip()
setup(name='avocado-runner-remote',
setup(name='avocado-framework-plugin-runner-remote',
description='Avocado Runner for Remote Execution',
version=VERSION,
author='Avocado Developers',
......
......@@ -21,7 +21,7 @@ root_path = os.path.abspath(os.path.join("..", ".."))
version_file = os.path.join(root_path, 'VERSION')
VERSION = open(version_file, 'r').read().strip()
setup(name='avocado-runner-vm',
setup(name='avocado-framework-plugin-runner-vm',
description='Avocado Runner for libvirt VM Execution',
version=VERSION,
author='Avocado Developers',
......@@ -29,7 +29,7 @@ setup(name='avocado-runner-vm',
url='http://avocado-framework.github.io/',
packages=find_packages(),
include_package_data=True,
install_requires=['avocado-runner-remote', 'libvirt-python'],
install_requires=['avocado-framework-plugin-runner-remote', 'libvirt-python'],
entry_points={
'avocado.plugins.cli': [
'vm = avocado_runner_vm:VMCLI',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册