ifxlookup/setup.py

20 lines
754 B
Python
Raw Permalink Normal View History

2020-07-28 22:49:28 +00:00
from setuptools import setup, find_packages
import glob
files = glob.glob('ifxlookup/plugins/*.py')
setup(name='ifxlookup',
2020-10-09 23:27:39 +00:00
version='2.1.1',
2020-07-28 22:49:28 +00:00
url='https://p-bitbucket.imovetv.com/projects/IFX/repos/ifxlookup/browse',
license='Apache2',
author='Daniel Dayley',
author_email='daniel.dayley@sling.com',
description='A python lookup module and command-line tool for infrastructure equipment.',
packages=find_packages(exclude=['tests']),
package_data={"": ['plugins/*.py']},
2020-10-09 23:27:39 +00:00
install_requires=['dnspython','jsonpath-ng','paramiko','PyYAML','requests','shodan','ldap3','vsphere-automation-sdk @ git+https://github.com/vmware/vsphere-automation-sdk-python.git'],
2020-07-28 22:49:28 +00:00
scripts=['bin/ifxlookup'],
2021-07-06 18:58:45 +00:00
long_description=open('README.md').read(),
2020-07-28 22:49:28 +00:00
zip_safe=True
)