blob: fa80bee41d79f0fa0466bd6777a30846a04f6543 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env python
from distutils.core import setup
setup(name='nmap2json',
version='0.1',
description='Nmap scan host ports and print as JSON',
author='Oleg Pykhalov',
author_email='go.wigust@gmail.com',
url='https://gitlab.com/wigust/nmap2json',
packages=['nmap2json'],
entry_points={'console_scripts': ['nmap2json = nmap2json.__main__:main']},
install_requires=[
'xmltodict'
]
)
|