configuration should be specified explicitly

This commit is contained in:
Roman Zeyde
2014-12-02 22:18:24 +02:00
parent 6bf0d4eeda
commit ca14f0862b
8 changed files with 62 additions and 53 deletions

View File

@@ -1,14 +1,5 @@
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
pwd = os.path.dirname(__file__)
from setuptools import setup
from setuptools.command.test import test as TestCommand
@@ -19,12 +10,13 @@ class PyTest(TestCommand):
self.test_suite = True
def run_tests(self):
import sys
import pytest
sys.exit(pytest.main(['tests']))
setup(
name="amodem",
version="1.3",
version="1.4",
description="Audio Modem Communication Library",
author="Roman Zeyde",
author_email="roman.zeyde@gmail.com",