We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dedea7 commit b56a53fCopy full SHA for b56a53f
setup.py
@@ -4,6 +4,13 @@
4
from setuptools import setup, find_packages
5
import pygithub3
6
7
+# Odd hack to get 'python setup.py test' working on py2.7
8
+try:
9
+ import multiprocessing
10
+ import logging
11
+except ImportError:
12
+ pass
13
+
14
setup(
15
name=pygithub3.__name__,
16
version=pygithub3.__version__,
@@ -14,6 +21,11 @@
21
long_description=open('README.rst').read(),
22
license='ISC',
23
packages=find_packages(exclude=['*tests*']),
24
+ test_suite='nose.collector',
25
+ tests_require=[
26
+ 'nose',
27
+ 'mock',
28
+ ],
17
29
install_requires=map(str.strip, open('requirements/base.txt')),
18
30
include_package_data=True,
19
31
classifiers=(
0 commit comments