From 3a17da42312f6db6b6e4de1bb09d638a2cac9d38 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Thu, 7 Aug 2014 17:51:53 +0300 Subject: [PATCH] fix setup.py - add Python 3.3 - add test support --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bc18e52..df4e8ac 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,8 @@ setup( license="MIT", url="http://github.com/romanz/amodem", packages=['amodem'], - tests_require=['py.test'], + tests_require=['nose'], + test_suite='nose.collector', install_requires=['numpy', 'bitarray', 'reedsolo'], platforms=['POSIX'], classifiers=[ @@ -27,6 +28,7 @@ setup( "License :: OSI Approved :: MIT License", "Operating System :: POSIX", "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.3", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Networking", "Topic :: Communications",