-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 901 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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
if sys.hexversion < 0x3020000:
print('MutPy requires Python 3.2 or newer!')
sys.exit()
setup(
name='MutPy',
version='0.4.0',
description='Mutation testing tool for Python 3.x source code.',
author='Konrad Hałas',
author_email='[email protected]',
url='https://bitbucket.org/khalas/mutpy',
download_url='https://bitbucket.org/khalas/mutpy',
packages=['mutpy'],
scripts=['bin/mut.py'],
install_requires=['PyYAML>=3.1', 'Jinja2>=2.7.1'],
test_suite='mutpy.test',
classifiers=[
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
],
)