forked from agroce/universalmutator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.4 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 -*-
from setuptools import setup, find_packages
import sys, os
setup(
name='universalmutator',
version='0.8.13',
description='Universal regexp-based mutation tool',
long_description_content_type="text/markdown",
long_description=open('README.md').read(),
packages=['universalmutator',],
include_package_data = True,
package_data = {
'universalmutator': [
'static/universal.rules',
'static/c_like.rules',
'static/c.rules',
'static/cpp.rules',
'static/swift.rules',
'static/java.rules',
'static/python.rules',
'static/rust.rules',
'static/go.rules',
'static/rust.rules',
'static/solidity.rules',
'static/none.rules',
]
},
license='MIT',
entry_points="""
[console_scripts]
mutate = universalmutator.genmutants:main
analyze_mutants = universalmutator.analyze:main
check_covered = universalmutator.checkcov:main
""",
keywords='testing mutation mutation-testing',
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
install_requires=[
],
url='https://github.com/agroce/universalmutator',
)