forked from Juniper/py-junos-eznc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.67 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
39
40
41
42
43
44
45
46
import os
import sys
sys.path.insert(0,'lib')
from setuptools import setup, find_packages
requirements = [ 'netaddr', 'jinja2 >= 2.7.1', 'lxml >= 3.2.4',
'scp >= 0.7.0', 'PyYAML >= 3.10' ]
setup(
name = "junos-eznc",
namespace_packages = ['jnpr'],
version = "0.0.4",
author = "Jeremy Schulman",
author_email = "[email protected]",
description = ( "Junos 'EZ' automation for non-programmers" ),
license = "Apache 2.0",
keywords = "Junos NETCONF networking automation",
url = "http://www.github.com/Juniper/py-junos-eznc",
package_dir={'':'lib'},
packages=find_packages('lib'),
package_data={
'jnpr.junos.op': ['*.yml'],
'jnpr.junos.cfgro': ['*.yml']
},
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'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 :: System :: Networking :: Firewalls',
'Topic :: Text Processing :: Markup :: XML'
],
)