forked from F5Networks/f5-ansible
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 925 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python
#
from __future__ import with_statement
import setuptools
requires = [
"flake8 > 3.0.0",
"ansible == 2.4.0"
]
setuptools.setup(
name="f5-ansible",
license="GPL3",
version="1.0.0",
description="Ansible modules for F5 products",
author="Tim Rupp",
author_email="[email protected]",
url="https://github.com/F5Networks/f5-ansible",
data_files=[
(
'library',
[
'bigip_pool.py',
'bigip_selfip.py'
]
)
],
install_requires=requires,
classifiers=[
"Framework :: Ansible",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache 2 License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries :: Ansible Modules"
]
)