forked from IntelligenceX/SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (20 loc) · 888 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/python3
import setuptools
from distutils.core import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='intelx',
version='0.3',
description='IntelX is a Python command-line utility and API wrapper for intelx.io, made to perform any kind of open-source intelligence.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Kleissner Investments s.r.o./Dominik Penner',
author_email='[email protected]',
keywords='intelx intelligence x intelx.io _IntelligenceX IntelligenceX _intelx',
url='https://github.com/IntelligenceX/SDK/Python',
packages=['.'],
scripts=['cli/intelx.py'],
install_requires=['requests', 'pygments', 'termcolor', 'tabulate']
)