forked from mongodb/motor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
170 lines (141 loc) · 5.97 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
import sys
from distutils.cmd import Command
from distutils.errors import DistutilsOptionError
try:
from setuptools import setup
except ImportError:
from ez_setup import use_setuptools
use_setuptools('28.0')
from setuptools import setup
classifiers = """\
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Development Status :: 4 - Beta
Natural Language :: English
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Operating System :: MacOS :: MacOS X
Operating System :: Unix
Programming Language :: Python
Programming Language :: Python :: Implementation :: CPython
"""
description = 'Non-blocking MongoDB driver for Tornado or asyncio'
long_description = open("README.rst").read()
install_requires = ['pymongo>=3.6,<4']
tests_require = ['mockupdb>=1.4.0']
if sys.version_info[0] < 3:
install_requires.append('futures')
class test(Command):
description = "run the tests"
user_options = [
("test-module=", "m", "Discover tests in specified module"),
("test-suite=", "s",
"Test suite to run (e.g. 'some_module.test_suite')"),
("failfast", "f", "Stop running tests on first failure or error"),
("tornado-warnings", "w", "Let Tornado log warnings"),
("xunit-output=", "x",
"Generate a results directory with XUnit XML format")]
def initialize_options(self):
self.test_module = None
self.test_suite = None
self.failfast = False
self.tornado_warnings = False
self.xunit_output = None
def finalize_options(self):
if self.test_suite is None and self.test_module is None:
self.test_module = 'test'
elif self.test_module is not None and self.test_suite is not None:
raise DistutilsOptionError(
"You may specify a module or suite, but not both")
def run(self):
# Installing required packages, running egg_info and build_ext are
# part of normal operation for setuptools.command.test.test. Motor
# has no extensions so build_ext is a no-op.
if self.distribution.install_requires:
self.distribution.fetch_build_eggs(
self.distribution.install_requires)
if self.distribution.tests_require:
self.distribution.fetch_build_eggs(self.distribution.tests_require)
if self.xunit_output:
self.distribution.fetch_build_eggs(
["unittest-xml-reporting>=1.14.0,<2.0.0a0"])
self.run_command('egg_info')
build_ext_cmd = self.reinitialize_command('build_ext')
build_ext_cmd.inplace = 1
self.run_command('build_ext')
from test import (env,
suppress_tornado_warnings,
MotorTestLoader,
test_environment as testenv)
loader = MotorTestLoader()
loader.avoid('high_availability', reason='Runs separately')
if not (testenv.HAVE_ASYNCIO or testenv.HAVE_TORNADO):
raise ImportError("No tornado nor asyncio")
elif not testenv.HAVE_TORNADO:
loader.avoid('tornado_tests', reason='no tornado')
elif not testenv.HAVE_ASYNCIO:
loader.avoid('asyncio_tests', reason='no asyncio')
if not testenv.HAVE_AIOHTTP:
loader.avoid('asyncio_tests.test_aiohttp_gridfs',
reason='no aiohttp')
if sys.version_info[:2] < (3, 5):
loader.avoid('asyncio_tests.test_asyncio_await',
'asyncio_tests.test_asyncio_change_stream',
'asyncio_tests.test_examples',
reason='python < 3.5')
# Decide if we can run async / await tests with Tornado.
test_motor_await = 'tornado_tests.test_motor_await'
if not testenv.HAVE_TORNADO:
loader.avoid(test_motor_await, reason='no tornado')
elif sys.version_info[:2] < (3, 5):
loader.avoid(test_motor_await, reason='python < 3.5')
loader.avoid('tornado_tests.test_motor_change_stream',
reason='python < 3.5')
if self.test_suite is None:
suite = loader.discover(self.test_module)
else:
suite = loader.loadTestsFromName(self.test_suite)
runner_kwargs = dict(verbosity=2, failfast=self.failfast)
if self.xunit_output:
runner_kwargs['output'] = self.xunit_output
from xmlrunner import XMLTestRunner
runner_class = XMLTestRunner
else:
import unittest
runner_class = unittest.TextTestRunner
runner = runner_class(**runner_kwargs)
env.setup()
if not self.tornado_warnings:
suppress_tornado_warnings()
result = runner.run(suite)
sys.exit(not result.wasSuccessful())
packages = ['motor', 'motor.frameworks', 'motor.frameworks.tornado']
if sys.version_info[0] >= 3:
# Trying to install and byte-compile motor/frameworks/asyncio/__init__.py
# causes SyntaxError in Python 2.
packages.append('motor.frameworks.asyncio')
# Install aiohttp integration - aiohttp itself need not be installed.
packages.append('motor.aiohttp')
setup(name='motor',
version='2.1.0.dev0',
packages=packages,
description=description,
long_description=long_description,
author='A. Jesse Jiryu Davis',
author_email='[email protected]',
url='https://github.com/mongodb/motor/',
install_requires=install_requires,
license='http://www.apache.org/licenses/LICENSE-2.0',
classifiers=[c for c in classifiers.split('\n') if c],
keywords=[
"mongo", "mongodb", "pymongo", "gridfs", "bson", "motor", "tornado",
"asyncio",
],
tests_require=tests_require,
test_suite='test',
zip_safe=False,
cmdclass={'test': test})