File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ ## 2019/09/20 (v0.1.5)
5+ - [ bugfix] Fixed python2 installation
6+
47## 2019/09/01 (v0.1.4)
58 - [ bugfix] Better support for python3 #22
69
Original file line number Diff line number Diff line change 33from .masscan import *
44
55__author__ = 'MyKings (xsseroot@gmail.com)'
6- __version__ = '0.1.4 '
7- __last_modification__ = '2019.09.02 '
6+ __version__ = '0.1.5 '
7+ __last_modification__ = '2019.09.20 '
88
Original file line number Diff line number Diff line change 22# -*- coding: utf-8 -*-
33import os
44import sys
5+ import io
56
67try :
78 from setuptools import setup
1617here = os .path .abspath (os .path .dirname (__file__ ))
1718
1819if IS_PY2 :
19- with open (os .path .join (here , 'README.rst' )) as readme_file :
20+ with io . open (os .path .join (here , 'README.rst' )) as readme_file :
2021 long_description = readme_file .read ()
2122else :
22- with open (os .path .join (here , 'README.rst' ), encoding = 'utf-8' ) as readme_file :
23+ with io . open (os .path .join (here , 'README.rst' ), encoding = 'utf-8' ) as readme_file :
2324 long_description = readme_file .read ()
2425
2526setup (
You can’t perform that action at this time.
0 commit comments