1#!/usr/bin/env python
2#
3# Copyright 2017, Data61
4# Commonwealth Scientific and Industrial Research Organisation (CSIRO)
5# ABN 41 687 119 230.
6#
7# This software may be distributed and modified according to the terms of
8# the BSD 2-Clause license. Note that NO WARRANTY is provided.
9# See "LICENSE_BSD2.txt" for details.
10#
11# @TAG(DATA61_BSD)
12#
13
14"""
15Setup script for dependency metapackage.
16
17To add a python dependency, add it to the DEPS list below.
18
19To publish to pypitest:
20python setup.py sdist upload -r pypitest
21
22To publish to pypi:
23python setup.py sdist upload -r pypi
24"""
25
26from setuptools import setup
27
28DEPS = [
29    'six',
30    'future',
31    'jinja2',
32    'lxml',
33    'ply',
34    'psutil',
35    'bs4',
36    'sh',
37    'pexpect',
38    'pyaml'
39]
40
41setup(
42    name='sel4-deps',
43    version='0.1.3',
44    description='Metapackage for downloading build dependencies for the seL4 microkernel',
45    url="https://sel4.systems",
46    licence='BSD2',
47    author='TrustworthySystems',
48    author_email='Stephen.Sherratt@data61.csiro.au',
49    install_requires=DEPS,
50)
51