ifxlookup/setup.py

20 lines
652 B
Python

from setuptools import setup, find_packages
import glob
files = glob.glob('ifxlookup/plugins/*.py')
setup(name='ifxlookup',
version='2.1.0',
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'],
scripts=['bin/ifxlookup'],
long_description=open('README').read(),
zip_safe=True
)