Skip to content

Commit

Permalink
Remove overloaded install
Browse files Browse the repository at this point in the history
  • Loading branch information
jparr committed Jun 10, 2018
1 parent 2b78f9f commit b5128ef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
2 changes: 1 addition & 1 deletion aws_ir_plugins/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.2'
__version__ = '0.0.3'
10 changes: 0 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,18 @@

from distutils.command.build import build
from setuptools import setup
from setuptools.command.install import install as _install


VERSION = re.search(
r"^__version__ = ['\"]([^'\"]*)['\"]",
open('aws_ir_plugins/_version.py', 'r').read(),
re.MULTILINE
).group(1)


def test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests', pattern='test_*.py')
return test_suite


class install(_install):
def run(self):
self.run_command('build')
_install.run(self)


setup(name="aws_ir_plugins",
version=VERSION,
author="Andrew Krug, Alex McCormack, Joel Ferrier, Jeff Parr",
Expand Down

0 comments on commit b5128ef

Please sign in to comment.