summaryrefslogtreecommitdiffstats
path: root/ci/setup.py
blob: daacc61d5c742ab2474382968dc562b110540cca (plain)
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
33
34
35
36
37
38
39
40
41
42
##############################################################################
# Copyright (c) 2015 EMC and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

from setuptools import setup, find_packages


setup(
    name="storperf",
    version="0.dev0",
    packages=find_packages(),
    include_package_data=True,
    package_data={
        'storperf': [
            'storperf/resources/hot/*'
        ]
    },
    url="https://www.opnfv.org",
    install_requires=["coverage>=4.0.3",
                      "flake8>=2.5.1",
                      "flask>=0.10.1",
                      "flask-restful>=0.3.5",
                      "html2text>=2016.1.8",
                      "mock>=1.3",
                      "pyyaml>=3.11",
                      "python-cinderclient>=1.5.0",
                      "python-heatclient>=0.8.0",
                      "python-keystoneclient>=2.0.0",
                      "python-novaclient>=3.1.0",
                      "six==1.10.0"
                      ],
    entry_points={
        'console_scripts': [
            'storperf=storperf.main:main',
        ],
    }
)