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