forked from iaa-inc/napalm-exos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (27 loc) · 969 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
28
29
30
31
32
"""setup.py file."""
import uuid
from setuptools import setup, find_packages
from pip._internal.req import parse_requirements
__author__ = 'Yannis Ansermoz'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs = [str(ir.requirement) for ir in install_reqs]
setup(
name="napalm-exos",
version="0.1.3",
packages=find_packages(),
author="Yannis Ansermoz",
author_email="[email protected]",
description="Network Automation and Programmability Abstraction Layer with Multivendor support",
classifiers=[
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: POSIX :: Linux',
],
url="https://github.com/EdificomSA/napalm-exos",
include_package_data=True,
install_requires=reqs,
zip_safe=False,
)