forked from HypothesisWorks/hypothesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 895 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
from distutils.core import setup
from setuptools.command.test import test as TestCommand
import sys
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(
name='hypothesis',
version='0.1.3',
author='David R. MacIver',
author_email='[email protected]',
packages=['hypothesis'],
url='https://github.com/DRMacIver/hypothesis',
license='LICENSE.txt',
description='Tools for falsifying hypothesis with random data generation',
long_description=open('README').read(),
tests_require=['pytest', 'pytest-timeout'],
cmdclass={'test': PyTest},
**extra
)