-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (32 loc) · 1.14 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
"""setup.py file"""
import uuid
import setuptools
try:
from pip._internal.req import parse_requirements
except ImportError:
from pip.req import parse_requirements
__author__ = 'Steffen Walter <[email protected]>'
install_reqs = parse_requirements('requirements.txt', session=uuid.uuid1())
reqs = [str(ir.req) for ir in install_reqs]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='napalm_flexfabric',
version='0.2',
packages=setuptools.find_packages(),
author="Steffen Walter",
author_email="[email protected]",
description="Network Automation and Programmability Abstraction Layer (NAPALM) FlexFabric driver",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/firefly-serenity/napalm-flexfabric/",
classifiers=[
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: POSIX :: Linux',
],
include_package_data=True,
zip_safe=False,
install_requires=reqs,
)