mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-17 11:59:27 +00:00
Fix test requirements.
This commit is contained in:
6
setup.py
6
setup.py
@@ -4,9 +4,9 @@ import sys
|
||||
from setuptools import setup
|
||||
from ts3 import __version__
|
||||
|
||||
test_require = ['mock']
|
||||
tests_require = ['mock']
|
||||
if sys.version < '2.7':
|
||||
test_require.append('unittest2')
|
||||
tests_require.append('unittest2')
|
||||
|
||||
setup(
|
||||
name="python-ts3",
|
||||
@@ -19,7 +19,7 @@ setup(
|
||||
packages=['ts3'],
|
||||
scripts=['examples/gents3privkey.py'],
|
||||
test_suite='ts3.test.suite',
|
||||
test_require=test_require,
|
||||
tests_require=tests_require,
|
||||
classifiers=[
|
||||
'License :: OSI Approved :: BSD License',
|
||||
'Topic :: Internet',
|
||||
|
||||
Reference in New Issue
Block a user