Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
v2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vesche committed Dec 9, 2020
1 parent 28b7aee commit d775b0c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scanless/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
| viewdns | https://viewdns.info |
| yougetsignal | https://www.yougetsignal.com |
+----------------+--------------------------------------+'''
VERSION = '2.1.4'
VERSION = '2.1.5'

sl = Scanless(cli_mode=True)

Expand Down
13 changes: 10 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
#!/usr/bin/env python

import os
from setuptools import setup

directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='scanless',
packages=[
Expand All @@ -11,8 +16,10 @@
package_data = {
'scanless.static': ['*.txt']
},
version='2.1.4',
version='2.1.5',
description='An online port scan scraper.',
long_description=long_description,
long_description_content_type='text/markdown',
license='Unlicense',
url='https://github.com/vesche/scanless',
author='Austin Jackson',
Expand All @@ -33,7 +40,7 @@
'Intended Audience :: Information Technology',
'License :: Public Domain',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Security'
]
)
)

0 comments on commit d775b0c

Please sign in to comment.