forked from mozilla/mozilla_ci_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 994 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
from setuptools import setup, find_packages
setup(
name='mozci',
version='0.19.1.dev0',
packages=find_packages(),
entry_points ={
'console_scripts': [
'mozci-trigger = mozci.scripts.trigger:main',
'mozci-triggerbyfilters = mozci.scripts.triggerbyfilters:main',
],
},
install_requires=[
'beautifulsoup4>=4.3.2',
'bugsy>=0.4.0',
'ijson>=2.2',
'keyring>=5.3',
'progressbar>=2.3',
'requests>=2.5.1',
'taskcluster>=0.0.28',
'treeherder-client>=1.4'
],
# Meta-data for upload to PyPI
author='Armen Zambrano G.',
author_email='[email protected]',
description="It is a commandline client and python library to interact with \
Mozilla's Buildbot CI (and TaskCluster in the future). \
It simplifies and unifies querying and triggering jobs.",
license='MPL',
url='http://github.com/armenzg/mozilla_ci_tools',
)