diff --git a/setup.py b/setup.py index a01a124..87fd668 100644 --- a/setup.py +++ b/setup.py @@ -2,18 +2,12 @@ from setuptools import setup -if __name__ == '__main__': - import sys - - if len(sys.argv) == 1: - sys.argv.append('install') - with open('README.md', 'r') as f: long_description = f.read() setup( name='tremolo', - version='0.0.206', + version='0.0.207', license='MIT', author='nggit', author_email='contact@anggit.com', diff --git a/tremolo/__init__.py b/tremolo/__init__.py index 1b588a6..aa7d888 100644 --- a/tremolo/__init__.py +++ b/tremolo/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.206' +__version__ = '0.0.207' from .tremolo import Tremolo # noqa: E402 from . import exceptions # noqa: E402,F401