-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 988 Bytes
/
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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from os.path import dirname, join
def main():
base_dir = dirname(__file__)
setup(
name='flaky',
version='0.2.0',
description='Plugin for nose that automatically reruns flaky tests.',
long_description=open(join(base_dir, 'README.rst')).read(),
author='Box',
author_email='[email protected]',
url='https://github.com/box/flaky',
license=open(join(base_dir, 'LICENSE')).read(),
packages=find_packages(exclude=['test']),
namespace_packages=[b'box', b'box.test'],
test_suite='test',
zip_safe=False,
entry_points={
'nose.plugins.0.10': [
'flaky = box.test.flaky.flaky_plugin:FlakyPlugin'
]
},
install_requires=['nose'],
keywords='nose plugin flaky tests rerun retry'
)
if __name__ == '__main__':
main()