20 lines
754 B
Python
20 lines
754 B
Python
from setuptools import setup, find_packages
|
|
import glob
|
|
|
|
files = glob.glob('ifxlookup/plugins/*.py')
|
|
|
|
setup(name='ifxlookup',
|
|
version='2.1.1',
|
|
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']},
|
|
install_requires=['dnspython','jsonpath-ng','paramiko','PyYAML','requests','shodan','ldap3','vsphere-automation-sdk @ git+https://github.com/vmware/vsphere-automation-sdk-python.git'],
|
|
scripts=['bin/ifxlookup'],
|
|
long_description=open('README.md').read(),
|
|
zip_safe=True
|
|
)
|