-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
29 lines (26 loc) · 1.18 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
import setuptools
with open('README.md', 'r') as file:
long_description = file.read()
with open("requirements.txt", "r") as f:
INSTALL_REQUIRES = f.read().splitlines()
setuptools.setup(name='nornir_pyez',
version='0.2.10',
description='PyEZs library and plugins for Nornir',
url='https://github.com/DataKnox/nornir_pyez',
packages=setuptools.find_packages(),
author='Knox Hutchinson',
author_email='[email protected]',
license='MIT',
keywords=['ping', 'icmp', 'network'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Natural Language :: English'
],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=INSTALL_REQUIRES,
entry_points={
'nornir.plugins.connections': "pyez = nornir_pyez.plugins.connections:Pyez"
},
zip_safe=False)