mn-data 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
mn_data-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ include README.md
2
+ include LICENSE
3
+ recursive-include mn_data/docs *.docx
mn_data-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: mn-data
3
+ Version: 0.1.0
4
+ Summary: Network documentation and configuration files
5
+ Home-page: https://github.com/yourusername/mn-data
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: license-file
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # MN-Data
25
+
26
+ Network documentation and configuration files package.
27
+
28
+ ## Installation
29
+
30
+ ```bash
31
+ pip install mn-data
32
+ ```
33
+
34
+ ## Contents
35
+
36
+ This package contains networking documentation files including:
37
+ - BGP configuration guides
38
+ - VLAN routing documentation
39
+ - MPLS environment setup
40
+ - Path control and IPSLA guides
41
+ - VRF routing and forwarding documentation
42
+
43
+ ## Usage
44
+
45
+ After installation, you can access the documentation files from the package installation directory.
@@ -0,0 +1,22 @@
1
+ # MN-Data
2
+
3
+ Network documentation and configuration files package.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install mn-data
9
+ ```
10
+
11
+ ## Contents
12
+
13
+ This package contains networking documentation files including:
14
+ - BGP configuration guides
15
+ - VLAN routing documentation
16
+ - MPLS environment setup
17
+ - Path control and IPSLA guides
18
+ - VRF routing and forwarding documentation
19
+
20
+ ## Usage
21
+
22
+ After installation, you can access the documentation files from the package installation directory.
@@ -0,0 +1,15 @@
1
+ """MN-Data: Network documentation package"""
2
+ __version__ = "0.1.0"
3
+
4
+ import os
5
+
6
+ def get_docs_path():
7
+ """Return the path to the docs folder"""
8
+ return os.path.join(os.path.dirname(__file__), 'docs')
9
+
10
+ def list_docs():
11
+ """List all available documentation files"""
12
+ docs_path = get_docs_path()
13
+ if os.path.exists(docs_path):
14
+ return os.listdir(docs_path)
15
+ return []
ebgp.docx ADDED
Binary file
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: mn-data
3
+ Version: 0.1.0
4
+ Summary: Network documentation and configuration files
5
+ Home-page: https://github.com/yourusername/mn-data
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Classifier: Operating System :: OS Independent
11
+ Requires-Python: >=3.6
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Dynamic: author
15
+ Dynamic: author-email
16
+ Dynamic: classifier
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: license-file
21
+ Dynamic: requires-python
22
+ Dynamic: summary
23
+
24
+ # MN-Data
25
+
26
+ Network documentation and configuration files package.
27
+
28
+ ## Installation
29
+
30
+ ```bash
31
+ pip install mn-data
32
+ ```
33
+
34
+ ## Contents
35
+
36
+ This package contains networking documentation files including:
37
+ - BGP configuration guides
38
+ - VLAN routing documentation
39
+ - MPLS environment setup
40
+ - Path control and IPSLA guides
41
+ - VRF routing and forwarding documentation
42
+
43
+ ## Usage
44
+
45
+ After installation, you can access the documentation files from the package installation directory.
@@ -0,0 +1,17 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ setup.py
5
+ mn_data/__init__.py
6
+ mn_data.egg-info/PKG-INFO
7
+ mn_data.egg-info/SOURCES.txt
8
+ mn_data.egg-info/dependency_links.txt
9
+ mn_data.egg-info/top_level.txt
10
+ mn_data/docs/BGP_usingAspath.docx
11
+ mn_data/docs/Ibgp and ebgp.docx
12
+ mn_data/docs/MPLS_environment.docx
13
+ mn_data/docs/inter_VLAN_ routing..docx
14
+ mn_data/docs/ipsla_pathcontrol.docx
15
+ mn_data/docs/pathcontrol_PBR.docx
16
+ mn_data/docs/secure _managmnet_plane.docx
17
+ mn_data/docs/simulate_VRF_Routing&_forwarding.docx
@@ -0,0 +1 @@
1
+ mn_data
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
mn_data-0.1.0/setup.py ADDED
@@ -0,0 +1,23 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="mn-data",
5
+ version="0.1.0",
6
+ author="Your Name",
7
+ author_email="your.email@example.com",
8
+ description="Network documentation and configuration files",
9
+ long_description=open("README.md").read(),
10
+ long_description_content_type="text/markdown",
11
+ url="https://github.com/yourusername/mn-data",
12
+ packages=find_packages(),
13
+ package_data={
14
+ "mn_data": ["docs/*"],
15
+ },
16
+ include_package_data=True,
17
+ classifiers=[
18
+ "Programming Language :: Python :: 3",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ ],
22
+ python_requires=">=3.6",
23
+ )