OTX-Python-SDK/setup.py
2017-04-05 10:18:39 -05:00

15 lines
464 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(name='OTXv2',
version='1.1',
description='AlienVault OTX API',
author='AlienVault Team',
author_email='otx@alienvault.com',
url='https://github.com/AlienVault-Labs/OTX-Python-SDK',
download_url='https://github.com/AlienVault-Labs/OTX-Python-SDK/tarball/1.1.0',
py_modules=['OTXv2', 'IndicatorTypes'],
install_requires=['simplejson', 'requests']
)