forked from leusonmario/SMAT
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (44 loc) · 1.08 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
# _*_ coding: UTF-8 _*_
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='nimrod',
description='The killer of useless mutants.',
log_description=readme(),
version='2.0.0',
url='https://github.com/easy-software-ufal/nimrod-hunor',
author='Marcio Augusto Guimarães',
author_email='[email protected]',
license='MIT',
packages=[
'nimrod',
'nimrod.tools',
],
install_requires=[
'argparse==1.4.0',
'beautifulsoup4==4.6.0',
'pygithub==1.43.7',
'gitpython==2.1.11'
],
test_suite='nose.collector',
tests_require=[
'nose',
'coverage'
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'nimrod=nimrod.main:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Test :: Mutation :: Java'
],
python_requires='>=3'
)