forked from ShakoHo/mozCingi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (25 loc) · 758 Bytes
/
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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# from distutils.sysconfig import get_python_lib
from setuptools import setup, find_packages
# dependencies
with open('requirements.txt') as f:
deps = f.read().splitlines()
#with open('./FuzzManager_requirements.txt') as b:
# deps.extend(b.read().splitlines())
version = "0.1.0"
# main setup script
setup(
name="mozCingi",
version=version,
description="Fuzzy testing runner",
author="Mozilla Taiwan",
author_email="tw-qa@mozilla.com",
license="MPL",
install_requires=deps,
packages=find_packages(),
package_data={'': ['conf/*.json']},
entry_points={'console_scripts': ['cingi = mozCingi.mainRunner:main']},
include_package_data=True,
zip_safe=False
)