forked from FactoryBoy/factory_boy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·103 lines (86 loc) · 3.16 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import sys
from distutils.core import setup
from distutils import cmd
root = os.path.abspath(os.path.dirname(__file__))
def get_version(*module_dir_components):
version_re = re.compile(r"^__version__ = ['\"](.*)['\"]$")
module_root = os.path.join(root, *module_dir_components)
module_init = os.path.join(module_root, '__init__.py')
with open(module_init, 'r') as f:
for line in f:
match = version_re.match(line[:-1])
if match:
return match.groups()[0]
return '0.1.0'
VERSION = get_version('factory')
class test(cmd.Command):
"""Run the tests for this package."""
command_name = 'test'
description = 'run the tests associated with the package'
user_options = [
('test-suite=', None, "A test suite to run (defaults to 'tests')"),
]
def initialize_options(self):
self.test_runner = None
self.test_suite = None
def finalize_options(self):
self.ensure_string('test_suite', 'tests')
def run(self):
"""Run the test suite."""
try:
import unittest2 as unittest
except ImportError:
import unittest
import logging
logger = logging.getLogger('factory')
logger.addHandler(logging.StreamHandler())
verbosity = self.verbose
if verbosity >= 2:
logger.setLevel(logging.DEBUG)
else:
logger.setLevel(logging.INFO)
loader = unittest.TestLoader()
suite = unittest.TestSuite()
if self.test_suite == 'tests':
for test_module in loader.discover('.'):
suite.addTest(test_module)
else:
suite.addTest(loader.loadTestsFromName(self.test_suite))
result = unittest.TextTestRunner(verbosity=verbosity).run(suite)
if not result.wasSuccessful():
sys.exit(1)
setup(
name='factory_boy',
version=VERSION,
description="A verstile test fixtures replacement based on thoughtbot's factory_girl for Ruby.",
author='Mark Sandstrom',
author_email='mark@deliciouslynerdy.com',
maintainer='Raphaël Barrois',
maintainer_email='raphael.barrois+fboy@polytechnique.org',
url='https://github.com/rbarrois/factory_boy',
keywords=['factory_boy', 'factory', 'fixtures'],
packages=['factory'],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries :: Python Modules'
],
cmdclass={'test': test},
)