We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a94003 commit a33ba52Copy full SHA for a33ba52
1 file changed
setup.py
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env python3
+#!/usr/bin/env
2
# -*- coding: utf-8 -*-
3
import os
4
import sys
@@ -16,12 +16,8 @@
16
17
here = os.path.abspath(os.path.dirname(__file__))
18
19
-if IS_PY2:
20
- with io.open(os.path.join(here, 'README.rst')) as readme_file:
21
- long_description = readme_file.read()
22
-else:
23
- with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme_file:
24
+with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as readme_file:
+ long_description = readme_file.read()
25
26
setup(
27
name='python-masscan',
0 commit comments