-
Notifications
You must be signed in to change notification settings - Fork 158
/
setup.py
executable file
·37 lines (35 loc) · 1.48 KB
/
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
#!/usr/bin/env python
from setuptools import setup
from version import VERSION
setup(
name="ansible-junos-stdlib",
version=VERSION,
author="Jeremy Schulman, Nitin Kumar, Rick Sherman, Stacy Smith",
author_email="[email protected]",
description=("Ansible Network build automation of Junos devices."),
license="Apache 2.0",
keywords="Ansible Junos NETCONF networking automation",
url="http://www.github.com/Juniper/ansible-junos-stdlib",
packages=[
"ansible_collections/juniper/device/plugins/modules",
"ansible_collections/juniper/device/plugins/module_utils",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Topic :: Text Processing :: Markup :: XML",
],
)