-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
27 lines (23 loc) · 886 Bytes
/
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
"""setup.py file."""
from setuptools import setup, find_packages
__author__ = "Benny Holmgren <[email protected]>"
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))]
setup(
name="napalm-mos",
version="5.0.0",
packages=find_packages(),
author="Benny Holmgren, Brandon Ewing",
author_email="[email protected], [email protected]",
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
classifiers=[
"Topic :: Utilities",
"Programming Language :: Python",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
],
url="https://github.com/napalm-automation-community/napalm-mos",
include_package_data=True,
install_requires=reqs,
python_requires=">=3.8",
)