forked from mozilla/mozilla_ci_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 816 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
from setuptools import setup, find_packages
required = [
"buildapi_client>=0.6.1",
"ijson",
"keyring",
"progressbar",
"pushlog_client",
"requests",
"taskcluster",
"treeherder-client>=3.1.0",
"jsonschema",
"pyyaml"
]
setup(
name='mozci',
version='0.55.2.dev0',
packages=find_packages(),
install_requires=required + ['pytest-runner'],
tests_require=required + ['mock', 'pytest'],
# Meta-data for upload to PyPI
author='Armen Zambrano G.',
author_email='armenzg@mozilla.com',
description="It is a python library to interact with \
Mozilla's Buildbot CI and TaskCluster. \
It simplifies and unifies querying and triggering jobs.",
license='MPL',
url='https://github.com/mozilla/mozilla_ci_tools',
)