Skip to content

Commit

Permalink
Adding packaging for the F5 Agent Service
Browse files Browse the repository at this point in the history
  • Loading branch information
richbrowne committed Mar 18, 2016
1 parent 295462f commit 966f36e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 35 deletions.
1 change: 1 addition & 0 deletions f5_openstack_agent/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "2.0.1a1"
33 changes: 0 additions & 33 deletions setup.cfg

This file was deleted.

30 changes: 28 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import f5_openstack_agent
import setuptools

try:
Expand All @@ -20,5 +21,30 @@
pass

setuptools.setup(
setup_requires=['pbr>=1.8'],
pbr=True)
version=f5_openstack_agent.__version__,
name="f5-openstack-agent",
description = 'F5 Networks Agent for OpenStack services',
author="F5 Networks",
author_email="[email protected]",
data_files=[('/etc/neutron/services/f5', ['etc/neutron/services/f5/f5-openstack-agent.ini']),
('/etc/init.d', ['etc/init.d/f5-oslbaasv2-agent']),
('/usr/lib/systemd/system', ['lib/systemd/system/f5-openstack-agent.service'])],
packages=setuptools.find_packages(exclude=['*.test', '*.test.*', 'test*', 'test']),
classifiers=[
'Environment :: OpenStack',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7'
],
entry_points={
'console_scripts': [
'f5-oslbaasv2-agent = f5_openstack_agent.lbaasv2.drivers.bigip.agent:main'
]
},
install_requires=['f5-sdk >= 0.1.2']
)

0 comments on commit 966f36e

Please sign in to comment.