diff --git a/doc-requirements.txt b/doc-requirements.txt deleted file mode 100644 index 8cfd949..0000000 --- a/doc-requirements.txt +++ /dev/null @@ -1,9 +0,0 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - -oslo.config>=3.9.0 # Apache-2.0 -oslo.log>=1.14.0 # Apache-2.0 -sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD -sphinxcontrib-httpdomain # BSD -sphinx_rtd_theme diff --git a/requirements-agent.txt b/requirements-agent.txt deleted file mode 100644 index 17ef03f..0000000 --- a/requirements-agent.txt +++ /dev/null @@ -1,12 +0,0 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - -pbr>=1.8 # Apache-2.0 - -oslo.concurrency>=3.8.0 # Apache-2.0 -oslo.config!=3.18.0,>=3.14.0 # Apache-2.0 -oslo.i18n>=2.1.0 # Apache-2.0 -oslo.log>=3.11.0 # Apache-2.0 -pyzmq>=16.0 # LGPL+BSD -PyYAML>=3.1.0 \ No newline at end of file diff --git a/setup-agent.cfg b/setup-agent.cfg deleted file mode 100644 index e7f6356..0000000 --- a/setup-agent.cfg +++ /dev/null @@ -1,27 +0,0 @@ -[metadata] -name = pyshaker-agent -summary = Shaker Agent -description-file = - README.rst -author = OpenStack -author-email = openstack-dev@lists.openstack.org -home-page = http://www.openstack.org/ -classifier = - Environment :: OpenStack - Intended Audience :: Developers - Intended Audience :: Information Technology - License :: OSI Approved :: Apache Software License - Operating System :: POSIX :: Linux - Programming Language :: Python - Programming Language :: Python :: 2 - Programming Language :: Python :: 2.7 - Programming Language :: Python :: 3 - Programming Language :: Python :: 3.5 - -[files] -packages = - shaker - -[entry_points] -console_scripts = - shaker-agent = shaker.agent.agent:main diff --git a/tools/build_agent_pkg.sh b/tools/build_agent_pkg.sh deleted file mode 100755 index c4e6c7d..0000000 --- a/tools/build_agent_pkg.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -TEMP_DIR="$(mktemp -d)" -cp -r shaker ${TEMP_DIR}/ -cp -r .git ${TEMP_DIR}/ -cp requirements-agent.txt ${TEMP_DIR}/requirements.txt -cp setup-agent.cfg ${TEMP_DIR}/setup.cfg -cp setup.py ${TEMP_DIR}/ -cp README.rst ${TEMP_DIR}/ -cp LICENSE ${TEMP_DIR}/ - -export PBR_VERSION="$(git describe --exact-match)" - -cd ${TEMP_DIR} -echo "Building pyshaker-agent version ${PBR_VERSION}" -python setup.py sdist -twine upload -s dist/* - -cd - -rm -rf ${TEMP_DIR}