398f8763a10972dd41605111dab9638b51d4f071
[bottlenecks.git] / testing-scheduler / server / setup.py
1 #!/usr/bin/env python\r
2 ##############################################################################\r
3 # Copyright (c) 2018 Huawei Technologies Co.,Ltd and others.\r
4 #\r
5 # All rights reserved. This program and the accompanying materials\r
6 # are made available under the terms of the Apache License, Version 2.0\r
7 # which accompanies this distribution, and is available at\r
8 # http://www.apache.org/licenses/LICENSE-2.0\r
9 ##############################################################################\r
10 '''This file realize the function of how to setup server of testing-scheduler\r
11 to your environment. This use setuptools tool to setup'''\r
12 \r
13 from setuptools import setup, find_packages\r
14 \r
15 \r
16 setup(\r
17     name="testing-scheduler-server",\r
18     version="0.1",\r
19     packages=find_packages(),\r
20     include_package_data=True,\r
21     package_data={\r
22         'src': [\r
23             'env/context/*.yaml',\r
24             'env/service/*.yaml',\r
25             'conductor_processor/*.json'\r
26         ],\r
27         'test': [\r
28             'test_case/*/*.yaml'\r
29         ]\r
30     }\r
31 )\r