-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (54 loc) · 1.51 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
import os
import glob
import setuptools
path = os.path.join(os.path.dirname(__file__), 'src/boggart/version.py')
with open(path, 'r') as f:
exec(f.read())
setuptools.setup(
name='boggart',
version=__version__,
description='Lightweight, extensible, language-independent mutation testing.',
author='Chris Timperley',
author_email='christimperley@gmail.com',
url='https://github.com/squaresLab/Boggart',
license='mit',
python_requires='>=3.5',
install_requires=[
'bugzoo>=2.1.20',
'rooibos>=0.3.0',
'attrs>=17.2.0',
'pyyaml',
'requests>=2.0.0',
'mypy-extensions>=0.3.0',
'flask>=0.10',
'Flask-API'
],
setup_requires=[
'pytest-runner'
],
tests_require=[
'pytest'
],
keywords=['bug', 'defect', 'mutation', 'mutant', 'testing', 'docker'],
classifiers=[
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
include_package_data=True,
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
package_data={
'': ['*.yml']
},
py_modules=[
splitext(basename(path))[0] for path in glob.glob('src/*.py')
],
entry_points = {
'console_scripts': [ 'boggartd = boggart.server:main' ]
},
test_suite = 'tests'
)