-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding packaging for the F5 Agent Service
- Loading branch information
1 parent
295462f
commit 966f36e
Showing
3 changed files
with
29 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "2.0.1a1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
@@ -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'] | ||
) | ||
|