forked from mutpy/mutpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.34 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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
import mutpy
if sys.hexversion < 0x3030000:
print('MutPy requires Python 3.3 or newer!')
sys.exit()
with open('requirements/production.txt') as f:
requirements = f.read().splitlines()
with open('README.rst') as f:
long_description = f.read()
setup(
name='MutPy',
version=mutpy.__version__,
python_requires='>=3.3',
description='Mutation testing tool for Python 3.x source code.',
long_description=long_description,
author='Konrad Hałas',
author_email='[email protected]',
url='https://github.com/mutpy/mutpy',
download_url='https://github.com/mutpy/mutpy',
packages=['mutpy', 'mutpy.operators', 'mutpy.test_runners'],
package_data={'mutpy': ['templates/*.html']},
scripts=['bin/mut.py'],
install_requires=requirements,
extras_require={
'pytest': ["pytest>=3.0"]
},
test_suite='mutpy.test',
classifiers=[
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
],
)