This repository was archived by the owner on Aug 7, 2023. It is now read-only.
Commit d775b0c 1 parent 28b7aee commit d775b0c Copy full SHA for d775b0c
File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 19
19
| viewdns | https://viewdns.info |
20
20
| yougetsignal | https://www.yougetsignal.com |
21
21
+----------------+--------------------------------------+'''
22
- VERSION = '2.1.4 '
22
+ VERSION = '2.1.5 '
23
23
24
24
sl = Scanless (cli_mode = True )
25
25
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
3
+ import os
3
4
from setuptools import setup
4
5
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
+
5
10
setup (
6
11
name = 'scanless' ,
7
12
packages = [
11
16
package_data = {
12
17
'scanless.static' : ['*.txt' ]
13
18
},
14
- version = '2.1.4 ' ,
19
+ version = '2.1.5 ' ,
15
20
description = 'An online port scan scraper.' ,
21
+ long_description = long_description ,
22
+ long_description_content_type = 'text/markdown' ,
16
23
license = 'Unlicense' ,
17
24
url = 'https://github.com/vesche/scanless' ,
18
25
author = 'Austin Jackson' ,
33
40
'Intended Audience :: Information Technology' ,
34
41
'License :: Public Domain' ,
35
42
'Programming Language :: Python :: 3' ,
36
- 'Programming Language :: Python :: 3.8 ' ,
43
+ 'Programming Language :: Python :: 3.9 ' ,
37
44
'Topic :: Security'
38
45
]
39
- )
46
+ )
You can’t perform that action at this time.
0 commit comments