forked from Juniper/py-junos-netconify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.46 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
38
import os, sys
from glob import glob
from setuptools import setup, find_packages
requirements = [ 'pyserial','lxml','jinja2' ]
setup(
name = "junos-netconify",
version = "0.1.1",
author = "Jeremy Schulman",
author_email = "jnpr-community-netdev@juniper.net",
description = ( "Junos console/bootstrap automation"),
license = "Apache 2.0",
keywords = "Junos NETCONF basic CONSOLE automation",
url = "http://www.github.com/Juniper/py-junos-netconify",
install_requires=requirements,
packages=find_packages('lib'),
package_dir={'':'lib'},
scripts=['tools/netconify'],
classifiers=[
'Development Status :: 4 - Beta',
'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 :: Other Scripting Engines',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Text Processing :: Markup :: XML'
],
)