forked from Juniper/py-junos-eznc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 2.02 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
47
48
49
50
51
52
from setuptools import setup, find_packages
import sys
# parse requirements
req_lines = [line.strip() for line in open(
'requirements.txt').readlines()]
install_reqs = list(filter(None, req_lines))
if sys.version_info[:2] == (2, 6):
install_reqs.append('importlib>=1.0.3')
setup(
name="junos-eznc",
namespace_packages=['jnpr'],
version="2.2.1.dev0",
author="Jeremy Schulman, Nitin Kumar, Rick Sherman, Stacy Smith",
author_email="jnpr-community-netdev@juniper.net",
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'],
'jnpr.junos.resources': ['*.yml']
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=install_reqs,
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
'Topic :: Text Processing :: Markup :: XML'
],
)