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

Commit d775b0c

Browse files
committed
v2.1.5
1 parent 28b7aee commit d775b0c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

scanless/cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
| viewdns | https://viewdns.info |
2020
| yougetsignal | https://www.yougetsignal.com |
2121
+----------------+--------------------------------------+'''
22-
VERSION = '2.1.4'
22+
VERSION = '2.1.5'
2323

2424
sl = Scanless(cli_mode=True)
2525

setup.py

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
#!/usr/bin/env python
22

3+
import os
34
from setuptools import setup
45

6+
directory = os.path.abspath(os.path.dirname(__file__))
7+
with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f:
8+
long_description = f.read()
9+
510
setup(
611
name='scanless',
712
packages=[
@@ -11,8 +16,10 @@
1116
package_data = {
1217
'scanless.static': ['*.txt']
1318
},
14-
version='2.1.4',
19+
version='2.1.5',
1520
description='An online port scan scraper.',
21+
long_description=long_description,
22+
long_description_content_type='text/markdown',
1623
license='Unlicense',
1724
url='https://github.com/vesche/scanless',
1825
author='Austin Jackson',
@@ -33,7 +40,7 @@
3340
'Intended Audience :: Information Technology',
3441
'License :: Public Domain',
3542
'Programming Language :: Python :: 3',
36-
'Programming Language :: Python :: 3.8',
43+
'Programming Language :: Python :: 3.9',
3744
'Topic :: Security'
3845
]
39-
)
46+
)

0 commit comments

Comments
 (0)