forked from mpenning/ciscoconfparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.65 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (39 loc) · 1.65 KB
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
import sys
sys.path.insert(0,os.getcwd()+'/ciscoconfparse')
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='ciscoconfparse',
version=__import__("ciscoconfparse").__version__,
description='Parse, Audit, Query, Build, and Modify Cisco IOS-style configurations',
url='http://www.pennington.net/py/ciscoconfparse/',
author='David Michael Pennington',
author_email='mike /|at|\ pennington.net',
license='GPL',
platforms='any',
keywords='Parse audit query modify Cisco IOS configuration',
entry_points = "",
long_description=read('README.rst'),
include_package_data=True,
packages = find_packages(),
setup_requires=["setuptools_hg"], # setuptools_hg must be installed as a python module
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: System :: Networking',
'Topic :: System :: Networking :: Monitoring',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)