-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
66 lines (60 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# _*_ coding: UTF-8 _*_
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
test_requires = [
'nose==1.3.7',
'coverage==4.5.3',
'rednose==1.3.0'
]
setup(
name='hunor',
description='The son of Nimrod',
long_description=readme(),
keywords='test mutant analysis equivalent',
version='0.9.13',
url='https://github.com/marcioaug/hunor',
author='Marcio Augusto Guimarães',
author_email='[email protected]',
license='MIT',
packages=[
'hunor',
'hunor.tools',
'hunor.mutation',
'hunor.db',
'hunor.targets',
'hunor.tools.bin'
],
install_requires=[
'argparse==1.4.0',
'beautifulsoup4==4.6.0',
'graphviz==0.8.3',
'javalang==0.11.0',
'peewee==3.7.1',
'coloredlogs==10.0'
],
test_suite='nose.collector',
tests_require=test_requires,
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'hunor=hunor.main:main',
'hunor-gen=hunor.mutation.generate:main',
'hunor-pgen=hunor.mutation.genplugin:main',
'hunor-eval=hunor.mutation.evaluation:main',
'hunor-time=hunor.mutation.timeprofile:main',
'hunor-count=hunor.mutation.genmut:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Test :: Mutation'
],
python_requires='>=3',
setup_requires=[
] + test_requires
)