-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (23 loc) · 917 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 6 - Mature',
'Intended Audience :: Education',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='Pytheas22',
version='0.0.6',
description='Pytheas22 is a Port Scanner which scans IP-Cameras, internal networks and individual hosts. If the port 22 is open it will try to login to that host via bruteforce',
long_description_content_type="text/markdown",
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
url='',
author='Fawaz Bashiru',
author_email='fawazbashiru@gmail.com',
license='MIT',
classifiers=classifiers,
keywords='portscanner',
packages=find_packages(),
install_requires=["BetterPrinting", "colorama", "paramiko"]
)