Skip to content

Commit

Permalink
SYS-331 fixed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
instantlinux committed Aug 27, 2018
1 parent c6c47db commit bf61b0e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import setuptools
from setuptools.command.test import test as TestCommand

exec(open(os.path.join(os.path.dirname(os.path.abspath(__file__)),
'VERSION')).read())
__long_desc__ = io.open(os.path.join(os.path.dirname(os.path.abspath(__file__)),
'README.md'), encoding='utf-8').read()
from secondshot._version import __version__

__long_desc__ = io.open(os.path.join(os.path.dirname(
os.path.abspath(__file__)), 'README.md'), encoding='utf-8').read()


class PyTest(TestCommand):
Expand Down

0 comments on commit bf61b0e

Please sign in to comment.