Fixed test for security groups when checking for project/tenant ID
[snaps.git] / setup.py
1 # Copyright (c) 2016 Cable Television Laboratories, Inc. ("CableLabs")
2 #                    and others.  All rights reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at:
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 __author__ = 'spisarski'
16
17 try:
18     from setuptools import setu
19 except ImportError:
20     from distutils.core import setup
21
22 config = {
23     'description': 'Virtual Environment Deployment, Provisioning, and Testing Framework',
24     'author': 'Steve Pisarski',
25     'url': 'URL to get it at.',
26     'download_url': 'Where to download it.',
27     'author_email': 's.pisarski@cablelabs.com',
28     'version': '1.0',
29     'install_requires': ['python-novaclient>=6.0.0',
30                          'python-neutronclient>=5.1.0',
31                          'python-keystoneclient>=2.3.1',
32                          'python-glanceclient>=2.5.0',
33                          'ansible>=2.1.0',
34                          'wrapt',
35                          'scp',
36                          'cryptography'],
37     'scripts': [],
38     'name': 'snaps'
39 }
40
41 # setup(**config, requires=['ansible', 'Crypto', 'python-keystoneclient', 'scp', 'PyYAML'])
42 setup(**config)