forked from renatahodovan/fuzzinator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 1.26 KB
/
setup.py
File metadata and controls
33 lines (30 loc) · 1.26 KB
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
# Copyright (c) 2016-2017 Renata Hodovan, Akos Kiss.
#
# Licensed under the BSD 3-Clause License
# <LICENSE.rst or https://opensource.org/licenses/BSD-3-Clause>.
# This file may not be copied, modified, or distributed except
# according to those terms.
from os.path import dirname, join
from setuptools import setup, find_packages
with open(join(dirname(__file__), 'fuzzinator/VERSION'), 'rb') as f:
version = f.read().decode('ascii').strip()
setup(
name='fuzzinator',
version=version,
packages=find_packages(),
url='https://github.com/renatahodovan/fuzzinator',
license='BSD',
author='Renata Hodovan, Akos Kiss',
author_email='hodovan@inf.u-szeged.hu, akiss@inf.u-szeged.hu',
description='Fuzzinator Random Testing Framework',
long_description=open('README.rst').read(),
zip_safe=False,
include_package_data=True,
install_requires=['chardet', 'keyring', 'pexpect', 'picire==17.6', 'picireny==17.7', 'psutil',
'PyGithub', 'pymongo', 'pyperclip', 'python-bugzilla', 'google-api-python-client',
'rainbow_logging_handler', 'sphinx', 'sphinx_rtd_theme',
'tornado', 'urwid'],
entry_points={
'console_scripts': ['fuzzinator = fuzzinator.executor:execute']
}
)